copyWith method

UserMigrationBean copyWith({
  1. String? accountId,
  2. String? key,
  3. String? username,
})

Implementation

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