copyWith method

AuthSupportedMethods copyWith({
  1. bool? instantAuth,
  2. bool? instantMatch,
  3. bool? automatedMicroDeposits,
})

Implementation

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