SendMessage constructor

const SendMessage({
  1. Key? key,
  2. PapercupsCustomer? customer,
  3. Function? setCustomer,
  4. Function? setConversation,
  5. PhoenixChannel? conversationChannel,
  6. Function? setConversationChannel,
  7. Conversation? conversation,
  8. PhoenixSocket? socket,
  9. Function? setState,
  10. List<PapercupsMessage>? messages,
  11. bool? sending,
  12. required PapercupsProps props,
  13. required Color textColor,
  14. bool showDivider = true,
})

Implementation

const SendMessage({
  Key? key,
  this.customer,
  this.setCustomer,
  this.setConversation,
  this.conversationChannel,
  this.setConversationChannel,
  this.conversation,
  this.socket,
  this.setState,
  this.messages,
  this.sending,
  required this.props,
  required this.textColor,
  this.showDivider = true,
}) : super(key: key);