VideoInfo constructor
const
VideoInfo({
- Key? key,
- required String title,
- required String author,
- required String permlink,
- required DateTime? createdAt,
- required VideoFeedGridItemViewModel video,
- required Discussion? postInfo,
- required String? currentUser,
- required bool isContentVoted,
- void onTapComment()?,
- void onTapUpvote()?,
- void onTapBookmark()?,
- void onTapAuthor()?,
- void onTapInfo()?,
Implementation
const VideoInfo({
super.key,
required this.title,
required this.author,
required this.permlink,
required this.createdAt,
required this.video,
required this.postInfo,
required this.currentUser,
required this.isContentVoted,
this.onTapComment,
this.onTapUpvote,
this.onTapShare,
this.onTapBookmark,
this.onTapAuthor,
this.onTapInfo,
});