TweetView constructor

TweetView(
  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. bool? useVideoPlayer,
  15. double? videoPlayerInitialVolume,
  16. OnTapImage? onTapImage,
  17. DateFormat? createdDateDisplayFormat,
  18. bool? videoHighQuality,
})

Implementation

TweetView(
  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.useVideoPlayer,
  this.videoPlayerInitialVolume,
  this.onTapImage,
  this.createdDateDisplayFormat,
  this.videoHighQuality,
});