UISchemaElement constructor

UISchemaElement({
  1. String? type,
  2. String? scope,
  3. List<UISchemaElement>? elements,
  4. String? label,
  5. String? text,
  6. Map<String, dynamic>? options,
})

Implementation

UISchemaElement({
  this.type,
  this.scope,
  this.elements,
  this.label,
  this.text,
  this.options,
});