MastodonCredentialAccountUpdateRequest constructor

const MastodonCredentialAccountUpdateRequest({
  1. String? displayName,
  2. String? note,
  3. String? avatar,
  4. String? header,
  5. bool? locked,
  6. bool? bot,
  7. bool? discoverable,
  8. bool? hideCollections,
  9. bool? indexable,
  10. List<MastodonFieldAttribute>? fieldsAttributes,
  11. String? sourcePrivacy,
  12. bool? sourceSensitive,
  13. String? sourceLanguage,
  14. String? sourceQuotePolicy,
  15. List<String>? attributionDomains,
})

Creates parameters for a profile update request.

Implementation

const MastodonCredentialAccountUpdateRequest({
  this.displayName,
  this.note,
  this.avatar,
  this.header,
  this.locked,
  this.bot,
  this.discoverable,
  this.hideCollections,
  this.indexable,
  this.fieldsAttributes,
  this.sourcePrivacy,
  this.sourceSensitive,
  this.sourceLanguage,
  this.sourceQuotePolicy,
  this.attributionDomains,
});