ChatroomParticipantsListView constructor

const ChatroomParticipantsListView({
  1. required List<ChatroomParticipantPageController> services,
  2. required String roomId,
  3. required String ownerId,
  4. Widget itemBuilder(
    1. String userId,
    2. String? roomId
    )?,
  5. void onError(
    1. ChatError error
    )?,
  6. Key? key,
})

Implementation

const ChatroomParticipantsListView({
  required this.services,
  required this.roomId,
  required this.ownerId,
  this.itemBuilder,
  this.onError,
  super.key,
});