EmbeddedTweetView constructor

EmbeddedTweetView(
  1. TweetVM _tweetVM, {
  2. Color? backgroundColor,
  3. required bool darkMode,
  4. double? videoPlayerInitialVolume,
  5. OnTapImage? onTapImage,
  6. DateFormat? createdDateDisplayFormat,
  7. required bool videoHighQuality,
  8. bool showRepliesCount = false,
  9. bool? autoPlayVideo,
  10. bool? enableVideoFullscreen,
  11. Color? videoControlBarBgColor,
  12. Widget? videoPlaceholder,
})

Implementation

EmbeddedTweetView(
  this._tweetVM, {
  this.backgroundColor,
  required this.darkMode,
  this.videoPlayerInitialVolume,
  this.onTapImage,
  this.createdDateDisplayFormat,
  required this.videoHighQuality,
  this.showRepliesCount = false,
  this.autoPlayVideo,
  this.enableVideoFullscreen,
  this.videoControlBarBgColor,
  this.videoPlaceholder,
});