RangSchemaModel constructor

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

Implementation

RangSchemaModel(SchemaType type, String name, String key,
    {this.to = const [], this.from = const [], bool essencial = false})
    : super(type, name, key, essencial: essencial);