MastodonAdminAccount constructor
const
MastodonAdminAccount({ - required String id,
- required String username,
- String? domain,
- DateTime? createdAt,
- String? email,
- String? ip,
- List<MastodonAdminIp> ips = const [],
- String? locale,
- String? inviteRequest,
- MastodonAdminRole? role,
- bool confirmed = false,
- bool approved = false,
- bool disabled = false,
- bool sensitized = false,
- bool silenced = false,
- bool suspended = false,
- MastodonAccount? account,
- String? createdByApplicationId,
- String? invitedByAccountId,
})
Implementation
const MastodonAdminAccount({
required this.id,
required this.username,
this.domain,
this.createdAt,
this.email,
this.ip,
this.ips = const [],
this.locale,
this.inviteRequest,
this.role,
this.confirmed = false,
this.approved = false,
this.disabled = false,
this.sensitized = false,
this.silenced = false,
this.suspended = false,
this.account,
this.createdByApplicationId,
this.invitedByAccountId,
});