MChatPanel constructor

const MChatPanel(
  1. MTextController controller,
  2. CallChatPanel call, {
  3. required List<PanelListItem> list,
  4. String? sendIcon,
  5. String? emojiIcon,
  6. String? moreIcon,
  7. required Rx<MInputStatus> inputStatus,
  8. required dynamic onSend(
    1. String content
    ),
  9. Key? key,
})

Implementation

const MChatPanel(
  this.controller,
  this.call, {
  required this.list,
  this.sendIcon,
  this.emojiIcon,
  this.moreIcon,
  required this.inputStatus,
  required this.onSend,
  super.key,
});