CustomTextEditingController constructor

CustomTextEditingController({
  1. String? text,
  2. CometChatTheme? theme,
  3. List<CometChatTextFormatter>? formatters,
})

Implementation

CustomTextEditingController({
  super.text,
  CometChatTheme? theme,
  this.formatters,
}) {
  this.theme = theme ?? cometChatTheme;
  formatters;
}