CommentBottomSheet constructor

const CommentBottomSheet({
  1. Key? key,
  2. required DateTime? userBlockedUntil,
  3. required FeatureChecker featureChecker,
  4. required CommentService service,
  5. required UserInfo user,
  6. CommentsTheme? theme,
  7. CommentsAppActions? appActions,
  8. CommentsTextStyle? textStyle,
})

Implementation

const CommentBottomSheet({
  super.key,
  required this.userBlockedUntil,
  required this.featureChecker,
  required this.service,
  required this.user,
  this.theme,
  this.appActions,
  this.textStyle,
});