AbstractProperty constructor

AbstractProperty({
  1. String? name,
  2. String? type,
  3. bool required = false,
})

Implementation

AbstractProperty({
  this.name,
  this.type,
  this.required = false,
});