MastodonOEmbed constructor

const MastodonOEmbed({
  1. required String type,
  2. required String version,
  3. required String title,
  4. required String authorName,
  5. required String authorUrl,
  6. required String providerName,
  7. required String providerUrl,
  8. required int cacheAge,
  9. required String html,
  10. required int width,
  11. int? height,
})

Implementation

const MastodonOEmbed({
  required this.type,
  required this.version,
  required this.title,
  required this.authorName,
  required this.authorUrl,
  required this.providerName,
  required this.providerUrl,
  required this.cacheAge,
  required this.html,
  required this.width,
  this.height,
});