copyWith method
Implementation
UserInfoEntity copyWith({
UserInfoAccount? account,
UserInfoProfile? profile,
}) {
return UserInfoEntity()
..account = account ?? this.account
..profile = profile ?? this.profile;
}
UserInfoEntity copyWith({
UserInfoAccount? account,
UserInfoProfile? profile,
}) {
return UserInfoEntity()
..account = account ?? this.account
..profile = profile ?? this.profile;
}