copyWith method

AuthCredentialsProviderModel copyWith({
  1. String? password,
  2. String? usernameOrEmail,
})

Implementation

AuthCredentialsProviderModel copyWith({
  String? password,
  String? usernameOrEmail,
}) {
  return AuthCredentialsProviderModel(
    password: password ?? this.password,
    usernameOrEmail: usernameOrEmail ?? this.usernameOrEmail,
  );
}