BottomWritePicker constructor

const BottomWritePicker({
  1. int maxLength = 200,
  2. String? hintText,
  3. String? leftTag,
  4. String title = "",
  5. String? rightTag,
  6. BottomWritePickerClickCallback? onCancel,
  7. BottomWritePickerConfirmClickCallback? onConfirm,
  8. Color? rightTextColor,
  9. Color? cursorColor,
  10. String? defaultText,
  11. TextEditingController? textEditingController,
})

Implementation

const BottomWritePicker(
    {this.maxLength = 200,
    this.hintText,
    this.leftTag,
    this.title = "",
    this.rightTag,
    this.onCancel,
    this.onConfirm,
    this.rightTextColor,
    this.cursorColor,
    this.defaultText,
    this.textEditingController});