copyWith method
Implementation
BoardAdminsBeanUsersItem copyWith(
{String? key,
String? self,
String? name,
String? displayName,
bool? active,
String? accountId,
Map<String, dynamic>? avatarUrls}) {
return BoardAdminsBeanUsersItem(
key: key ?? this.key,
self: self ?? this.self,
name: name ?? this.name,
displayName: displayName ?? this.displayName,
active: active ?? this.active,
accountId: accountId ?? this.accountId,
avatarUrls: avatarUrls ?? this.avatarUrls,
);
}