CompactTweetView constructor

CompactTweetView(
  1. TweetVM _tweetVM, {
  2. TextStyle? userNameStyle,
  3. TextStyle? userScreenNameStyle,
  4. TextStyle? textStyle,
  5. TextStyle? clickableTextStyle,
  6. TextStyle? retweetInformationTextStyle,
  7. TextStyle? quoteUserNameStyle,
  8. TextStyle? quoteUserScreenNameStyle,
  9. TextStyle? quoteTextStyle,
  10. TextStyle? quoteClickableTextStyle,
  11. Color? quoteBorderColor,
  12. Color? quoteBackgroundColor,
  13. Color? backgroundColor,
  14. double? videoPlayerInitialVolume,
  15. OnTapImage? onTapImage,
  16. DateFormat? createdDateDisplayFormat,
  17. required bool videoHighQuality,
  18. bool? autoPlayVideo,
  19. bool? enableVideoFullscreen,
  20. Color? videoControlBarBgColor,
  21. Widget? videoPlaceholder,
})

Implementation

CompactTweetView(
  this._tweetVM, {
  this.userNameStyle,
  this.userScreenNameStyle,
  this.textStyle,
  this.clickableTextStyle,
  this.retweetInformationTextStyle,
  this.quoteUserNameStyle,
  this.quoteUserScreenNameStyle,
  this.quoteTextStyle,
  this.quoteClickableTextStyle,
  this.quoteBorderColor,
  this.quoteBackgroundColor,
  this.backgroundColor,
  this.videoPlayerInitialVolume,
  this.onTapImage,
  this.createdDateDisplayFormat,
  required this.videoHighQuality,
  this.autoPlayVideo,
  this.enableVideoFullscreen,
  this.videoControlBarBgColor,
  this.videoPlaceholder,
});