SelectionSchemaModel constructor

SelectionSchemaModel(
  1. SchemaType type,
  2. String name,
  3. String key, {
  4. bool multySelection = false,
  5. List<SelectionItemModel> items = const [],
  6. bool essencial = false,
})

Implementation

SelectionSchemaModel(SchemaType type, String name, String key,
    {this.multySelection = false,
    this.items = const [],
    bool essencial = false})
    : super(type, name, key, essencial: essencial);