ComboBoxColumn constructor

const ComboBoxColumn({
  1. required String key,
  2. required String label,
  3. List<String> options = const [],
  4. Future<List<String>> fetchOptions(
    1. String query
    )?,
  5. int remoteThreshold = 1,
  6. int remoteMinChars = 1,
  7. double width = 180,
  8. CellAlign? align,
  9. bool mono = false,
  10. bool required = false,
  11. String? validate(
    1. String value
    )?,
  12. EditableCellValidator? cellValidator,
  13. EditableCellBuilder? cellBuilder,
})

Implementation

const ComboBoxColumn({
  required super.key,
  required super.label,
  List<String> options = const [],
  this.fetchOptions,
  this.remoteThreshold = 1,
  this.remoteMinChars = 1,
  super.width = 180,
  super.align,
  super.mono = false,
  super.required = false,
  super.validate,
  super.cellValidator,
  super.cellBuilder,
}) : super(type: EditableColumnType.combo, options: options);