ModernFormTextsInput<T> constructor

const ModernFormTextsInput<T>({
  1. Key? key,
  2. String? bottomSheetLabelText,
  3. String? buttonText,
  4. void onChanged(
    1. List<ModernFormBottomSheetModel<T>> selecteds
    )?,
  5. required List<ModernFormBottomSheetModel<T>> value,
  6. required ModernFormBottomSheetModel<T> onAddValueGenerator(
    1. String v
    ),
  7. Future<void> onTap()?,
  8. String? cancel,
  9. TextStyle? cancelStyle,
  10. String? done,
  11. List<SecondOption>? options,
  12. TextCapitalization? textCapitalization,
})

Implementation

const ModernFormTextsInput({
  Key? key,
  this.bottomSheetLabelText,
  this.buttonText,
  this.onChanged,
  required this.value,
  required this.onAddValueGenerator,
  this.onTap,
  this.cancel,
  this.cancelStyle,
  this.done,
  this.options,
  this.textCapitalization,
}) : super(key: key);