ComboBoxColumn constructor
const
ComboBoxColumn({
- required String key,
- required String label,
- List<
String> options = const [], - Future<
List< fetchOptions(String> >- String query
- int remoteThreshold = 1,
- int remoteMinChars = 1,
- double width = 180,
- CellAlign? align,
- bool mono = false,
- bool required = false,
- String? validate(
- String value
- EditableCellValidator? cellValidator,
- 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);