WidgetProfileChatListBuilder constructor

const WidgetProfileChatListBuilder({
  1. Key? key,
  2. required ChatConversationType type,
  3. required dynamic id,
  4. required Widget builder(
    1. String fullname,
    2. String? thumbnal,
    3. ChatModel? model
    ),
})

Implementation

const WidgetProfileChatListBuilder({
  super.key,
  required this.type,
  required this.id,
  required this.builder,
});