$Expr constructor

$Expr({
  1. String? description,
  2. String? expression,
  3. String? location,
  4. String? title,
})

Implementation

$Expr({
  this.description,
  this.expression,
  this.location,
  this.title,
});