Expr constructor

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

Implementation

Expr({
  this.expression = '',
  this.title = '',
  this.description = '',
  this.location = '',
}) : super(fullyQualifiedName);