RepliesScreen constructor

const RepliesScreen({
  1. Key? key,
  2. required HiveFlutterKitPlatform hfk,
  3. required String account,
  4. Function? onTap,
  5. Function? onAuthorTap,
  6. Function? onCategoryTap,
  7. Function? onUpvoteTap,
  8. Function? onDownVoteTap,
  9. Function? onCommentTap,
  10. Function? onReblogTap,
})

Implementation

const RepliesScreen({
  super.key,
  required this.hfk,
  required this.account,
  this.onTap,
  this.onAuthorTap,
  this.onCategoryTap,
  this.onUpvoteTap,
  this.onDownVoteTap,
  this.onCommentTap,
  this.onReblogTap,
});