ChatTextField constructor

const ChatTextField({
  1. Key? key,
  2. TextEditingController? controller,
  3. dynamic changed(
    1. String
    )?,
  4. dynamic submitted(
    1. String
    )?,
  5. void emojiFn()?,
  6. void attachmentsFn()?,
  7. void cameraFn()?,
  8. required Color backgroundColor,
  9. required Color itemsColor,
})

Implementation

const ChatTextField({
  super.key,
  this.controller,
  this.changed,
  this.submitted,
  this.emojiFn,
  this.attachmentsFn,
  this.cameraFn,
  required this.backgroundColor,
  required this.itemsColor,
});