ChatScreen constructor

const ChatScreen({
  1. Key? key,
  2. double? height,
  3. bool isScreen = false,
  4. Color outgoingMessageColor = CustomColors.outgoingMessageColor,
  5. Color incomingMessageColor = CustomColors.incomingMessageColor,
  6. Color senderAvatarColor = CustomColors.defaultColor,
  7. Color receiverAvatarColor = CustomColors.defaultColor,
  8. String title = 'Messages',
  9. String? hintText,
})

Implementation

const ChatScreen(
    {Key? key,
    this.height,
    this.isScreen = false,
    this.outgoingMessageColor = CustomColors.outgoingMessageColor,
    this.incomingMessageColor = CustomColors.incomingMessageColor,
    this.senderAvatarColor = CustomColors.defaultColor,
    this.receiverAvatarColor = CustomColors.defaultColor,
    this.title = 'Messages',
    this.hintText})
    : super(key: key);