Property constructor

const Property({
  1. required List<Form> forms,
  2. Map<String, Object>? uriVariables,
  3. Map<String, dynamic>? additionalFields,
  4. DataSchema? dataSchema,
  5. bool observable = false,
})

Default constructor that creates a Property from a List of forms.

Implementation

const Property({
  required super.forms,
  super.uriVariables,
  super.additionalFields,
  this.dataSchema,
  this.observable = false,
});