MastodonInstanceConfiguration constructor

const MastodonInstanceConfiguration({
  1. required MastodonInstanceUrls urls,
  2. MastodonStatusesConfiguration? statuses,
  3. MastodonMediaConfiguration? mediaAttachments,
  4. MastodonPollsConfiguration? polls,
  5. MastodonAccountsConfiguration? accounts,
  6. MastodonTimelinesAccess? timelinesAccess,
  7. bool? translationEnabled,
  8. bool? limitedFederation,
  9. String? vapidPublicKey,
})

Implementation

const MastodonInstanceConfiguration({
  required this.urls,
  this.statuses,
  this.mediaAttachments,
  this.polls,
  this.accounts,
  this.timelinesAccess,
  this.translationEnabled,
  this.limitedFederation,
  this.vapidPublicKey,
});