ReportMessageBottomSheet constructor

const ReportMessageBottomSheet({
  1. Key? key,
  2. required String chatId,
  3. required String messageId,
  4. required String userId,
  5. required String currentUserId,
  6. required dynamic onUserBlocked(),
  7. required ChatService service,
  8. ChatTheme? theme,
  9. ChatTextStyle? textStyle,
  10. ChatAppActions? appActions,
})

Implementation

const ReportMessageBottomSheet({
  super.key,
  required this.chatId,
  required this.messageId,
  required this.userId,
  required this.currentUserId,
  required this.onUserBlocked,
  required this.service,
  this.theme,
  this.textStyle,
  this.appActions,
});