ChatDetailScreen constructor

const ChatDetailScreen({
  1. required ChatOptions options,
  2. required Future<void> onMessageSubmit(
    1. String text
    ),
  3. required Future<void> onUploadImage(
    1. Uint8List image
    ),
  4. required Future<void> onReadChat(
    1. ChatModel chat
    ),
  5. required ChatService service,
  6. required int pageSize,
  7. required String chatId,
  8. required double textfieldBottomPadding,
  9. required dynamic onPressChatTitle(
    1. BuildContext context,
    2. ChatModel chat
    ),
  10. required dynamic onPressUserProfile(
    1. String? userId
    ),
  11. Widget chatTitleBuilder(
    1. String chatTitle
    )?,
  12. Widget usernameBuilder(
    1. String userFullName
    )?,
  13. Widget? loadingWidgetBuilder(
    1. BuildContext context
    )?,
  14. ChatTranslations translations = const ChatTranslations(),
  15. Color? iconColor,
  16. Color? iconDisabledColor,
  17. bool showTime = false,
  18. Key? key,
})

Implementation

const ChatDetailScreen({
  required this.options,
  required this.onMessageSubmit,
  required this.onUploadImage,
  required this.onReadChat,
  required this.service,
  required this.pageSize,
  required this.chatId,
  required this.textfieldBottomPadding,
  required this.onPressChatTitle,
  required this.onPressUserProfile,
  this.chatTitleBuilder,
  this.usernameBuilder,
  this.loadingWidgetBuilder,
  this.translations = const ChatTranslations(),
  this.iconColor,
  this.iconDisabledColor,
  this.showTime = false,
  super.key,
});