ChatTextField constructor

const ChatTextField({
  1. Key? key,
  2. required String placeHolderText,
  3. required Color backgroundColor,
  4. required Color deeperColor,
  5. required dynamic onPressed(
    1. String
    ),
})

Implementation

const ChatTextField(
    {super.key,
    required this.placeHolderText,
    required this.backgroundColor,
    required this.deeperColor,
    required this.onPressed});