TweetView.fromTweetV2 constructor
TweetView.fromTweetV2(
- TweetV2Response tweet, {
- TextStyle? userNameStyle = defaultUserNameStyle,
- TextStyle? userScreenNameStyle = defaultUserScreenNameStyle,
- TextStyle? textStyle = defaultTextStyle,
- TextStyle? clickableTextStyle = defaultClickableTextStyle,
- TextStyle? retweetInformationTextStyle = defaultRetweetInformationStyle,
- TextStyle? quoteUserNameStyle = defaultQuoteUserNameStyle,
- TextStyle? quoteUserScreenNameStyle = defaultQuoteUserScreenNameStyle,
- TextStyle? quoteTextStyle = defaultQuoteTextStyle,
- TextStyle? quoteClickableTextStyle = defaultQuoteClickableTextStyle,
- Color? quoteBorderColor = Colors.grey,
- Color? quoteBackgroundColor = Colors.white,
- Color? backgroundColor = Colors.white,
- double? videoPlayerInitialVolume = 0.0,
- OnTapImage? onTapImage,
- DateFormat? createdDateDisplayFormat,
- bool? videoHighQuality = true,
- bool? autoPlayVideo,
- bool? enableVideoFullscreen,
- Color? videoControlBarBgColor,
- Widget? videoPlaceholder,
Implementation
TweetView.fromTweetV2(
TweetV2Response tweet, {
this.userNameStyle = defaultUserNameStyle,
this.userScreenNameStyle = defaultUserScreenNameStyle,
this.textStyle = defaultTextStyle,
this.clickableTextStyle = defaultClickableTextStyle,
this.retweetInformationTextStyle = defaultRetweetInformationStyle,
this.quoteUserNameStyle = defaultQuoteUserNameStyle,
this.quoteUserScreenNameStyle = defaultQuoteUserScreenNameStyle,
this.quoteTextStyle = defaultQuoteTextStyle,
this.quoteClickableTextStyle = defaultQuoteClickableTextStyle,
this.quoteBorderColor = Colors.grey,
this.quoteBackgroundColor = Colors.white,
this.backgroundColor = Colors.white,
this.videoPlayerInitialVolume = 0.0,
this.onTapImage,
this.createdDateDisplayFormat,
this.videoHighQuality = true,
this.autoPlayVideo,
this.enableVideoFullscreen,
this.videoControlBarBgColor,
this.videoPlaceholder,
}) : _tweetVM = TweetVM.fromApiV2Model(tweet, createdDateDisplayFormat);