copyWith method
Implementation
UserMigrationBean copyWith(
{String? accountId, String? key, String? username}) {
return UserMigrationBean(
accountId: accountId ?? this.accountId,
key: key ?? this.key,
username: username ?? this.username,
);
}