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