ReportCommentBottomSheet constructor

const ReportCommentBottomSheet({
  1. Key? key,
  2. required String commentId,
  3. required String userId,
  4. required dynamic onUserBlocked(),
  5. required CommentService service,
  6. CommentsTheme? theme,
  7. CommentsAppActions? appActions,
  8. CommentsTextStyle? textStyle,
})

Implementation

const ReportCommentBottomSheet({
  super.key,
  required this.commentId,
  required this.userId,
  required this.onUserBlocked,
  required this.service,
  this.theme,
  this.appActions,
  this.textStyle,
});