MastodonMediaAttachment constructor

const MastodonMediaAttachment({
  1. required String id,
  2. required MastodonMediaType type,
  3. String? url,
  4. String? previewUrl,
  5. String? remoteUrl,
  6. String? description,
  7. String? blurhash,
})

Implementation

const MastodonMediaAttachment({
  required this.id,
  required this.type,
  this.url,
  this.previewUrl,
  this.remoteUrl,
  this.description,
  this.blurhash,
});