MastodonStatusEdit constructor

const MastodonStatusEdit({
  1. required String content,
  2. required String spoilerText,
  3. required bool sensitive,
  4. required DateTime createdAt,
  5. required MastodonAccount account,
  6. required List<MastodonMediaAttachment> mediaAttachments,
  7. required List<MastodonCustomEmoji> emojis,
  8. MastodonStatusEditPoll? poll,
})

Implementation

const MastodonStatusEdit({
  required this.content,
  required this.spoilerText,
  required this.sensitive,
  required this.createdAt,
  required this.account,
  required this.mediaAttachments,
  required this.emojis,
  this.poll,
});