copyWith method
Implementation
AuthSupportedMethods copyWith(
{bool? instantAuth, bool? instantMatch, bool? automatedMicroDeposits}) {
return AuthSupportedMethods(
instantAuth: instantAuth ?? this.instantAuth,
instantMatch: instantMatch ?? this.instantMatch,
automatedMicroDeposits:
automatedMicroDeposits ?? this.automatedMicroDeposits);
}