ChatTextField constructor
ChatTextField({})
Implementation
ChatTextField(
{Key? key,
required this.send,
required this.controller,
this.onChanged,
this.backgroundColor,
this.maxLines = 5,
this.textStyle,
this.hintText = "Type...",
this.hintStyle})
: super(key: key) {
textStyle ??= Get.find<AppFonts>().S();
hintStyle ??=
Get.find<AppFonts>().S(color: Get.find<AppColors>().hintColor);
}