copyWith method
Implementation
BankVerificationRequestMessage copyWith({
String? bankNumber,
String? bankAgency,
String? accountType,
String? bankAccountNumber,
bool? automaticValidation,
}) {
return BankVerificationRequestMessage(
bankNumber: bankNumber ?? this.bankNumber,
bankAgency: bankAgency ?? this.bankAgency,
accountType: accountType ?? this.accountType,
bankAccountNumber: bankAccountNumber ?? this.bankAccountNumber,
automaticValidation: automaticValidation ?? this.automaticValidation,
);
}