MetaFormSection constructor

MetaFormSection({
  1. String? label,
  2. String? key,
  3. required Set properties,
})

Implementation

MetaFormSection({String? label, String? key, required Set properties})
    : this._(
          label: label,
          key: key,
          properties: {...properties.map((prop) => JsonPath.of(prop))});