Property constructor

const Property({
  1. String? propertyName,
  2. bool required = false,
  3. bool indexed = true,
})

Implementation

const Property(
    {this.propertyName, this.required = false, this.indexed = true});