IdField constructor

IdField({
  1. String? id,
  2. String? name,
  3. bool showInList = true,
  4. bool isRequired = true,
  5. int sort = 0,
  6. bool isStub = false,
  7. FieldType type = FieldType.idField,
})

Implementation

IdField({
  String? id,
  String? name,
  super.showInList = true,
  super.isRequired = true,
  super.sort,
  this.isStub = false,
  super.type = FieldType.idField,
}) : super(name: name ?? 'ID', id: id ?? 'id');