ChatroomMessageListView constructor

const ChatroomMessageListView({
  1. void onTap(
    1. BuildContext content,
    2. Message msg
    )?,
  2. void onLongPress(
    1. BuildContext content,
    2. Message msg
    )?,
  3. Widget itemBuilder(
    1. Message msg
    )?,
  4. ChatroomMessageListController? controller,
  5. Key? key,
})

Implementation

const ChatroomMessageListView({
  this.onTap,
  this.onLongPress,
  this.itemBuilder,
  this.controller,
  super.key,
});