MastodonScheduledStatusParams constructor

const MastodonScheduledStatusParams({
  1. required String text,
  2. MastodonScheduledStatusPoll? poll,
  3. List<String>? mediaIds,
  4. bool? sensitive,
  5. String? spoilerText,
  6. String? visibility,
  7. String? inReplyToId,
  8. String? language,
  9. String? idempotency,
})

Creates a MastodonScheduledStatusParams with the given fields.

Implementation

const MastodonScheduledStatusParams({
  required this.text,
  this.poll,
  this.mediaIds,
  this.sensitive,
  this.spoilerText,
  this.visibility,
  this.inReplyToId,
  this.language,
  this.idempotency,
});