MastodonTrendsLink constructor

const MastodonTrendsLink({
  1. required String url,
  2. required String title,
  3. required String description,
  4. required MastodonPreviewCardType type,
  5. required String authorName,
  6. required String authorUrl,
  7. required String providerName,
  8. required String providerUrl,
  9. required String html,
  10. required int width,
  11. required int height,
  12. required String embedUrl,
  13. required List<MastodonPreviewCardAuthor> authors,
  14. required List<MastodonTrendsLinkHistory> history,
  15. String? image,
  16. String? blurhash,
})

Implementation

const MastodonTrendsLink({
  required this.url,
  required this.title,
  required this.description,
  required this.type,
  required this.authorName,
  required this.authorUrl,
  required this.providerName,
  required this.providerUrl,
  required this.html,
  required this.width,
  required this.height,
  required this.embedUrl,
  required this.authors,
  required this.history,
  this.image,
  this.blurhash,
});