ChatTextField constructor

const ChatTextField({
  1. Key? key,
  2. Map<String, String> allAtMap = const {},
  3. AtTextCallback? atCallback,
  4. FocusNode? focusNode,
  5. TextEditingController? controller,
  6. ValueChanged<String>? onSubmitted,
  7. TextStyle? style,
  8. TextStyle? atStyle,
  9. List<TextInputFormatter>? inputFormatters,
  10. bool enabled = true,
})

Implementation

const ChatTextField({
  Key? key,
  this.allAtMap = const {},
  this.atCallback,
  this.focusNode,
  this.controller,
  this.onSubmitted,
  this.style,
  this.atStyle,
  this.inputFormatters,
  this.enabled = true,
}) : super(key: key);