copyWith method
Implementation
UserBean copyWith(
{String? accountId,
bool? active,
UserBeanAvatarUrls? avatarUrls,
String? displayName,
String? key,
String? name,
String? self}) {
return UserBean(
accountId: accountId ?? this.accountId,
active: active ?? this.active,
avatarUrls: avatarUrls ?? this.avatarUrls,
displayName: displayName ?? this.displayName,
key: key ?? this.key,
name: name ?? this.name,
self: self ?? this.self,
);
}