ModernFormMultiTextPicker<T> constructor

const ModernFormMultiTextPicker<T>({
  1. Key? key,
  2. String? label,
  3. String? labelTextHelper,
  4. required List<ModernFormBottomSheetModel<T>> suggestions,
  5. bool? forceMenu,
  6. void onChanged(
    1. List<T>
    )?,
  7. List<ModernFormBottomSheetModel<T>>? value,
  8. String? buttonLabel,
  9. String? validator(
    1. List<T>?
    )?,
  10. String? helperText,
  11. bool? moveEnable,
})

Implementation

const ModernFormMultiTextPicker({
  Key? key,
  this.label,
  this.labelTextHelper,
  required this.suggestions,
  this.forceMenu,
  this.onChanged,
  this.value,
  this.buttonLabel,
  this.validator,
  this.helperText,
  this.moveEnable,
}) : super(key: key);