SchemaAttributeType constructor

SchemaAttributeType({
  1. AttributeDataType? attributeDataType,
  2. bool? developerOnlyAttribute,
  3. bool? mutable,
  4. String? name,
  5. NumberAttributeConstraintsType? numberAttributeConstraints,
  6. bool? required,
  7. StringAttributeConstraintsType? stringAttributeConstraints,
})

Implementation

SchemaAttributeType({
  this.attributeDataType,
  this.developerOnlyAttribute,
  this.mutable,
  this.name,
  this.numberAttributeConstraints,
  this.required,
  this.stringAttributeConstraints,
});