copyWith method
Implementation
ProcessorStripeBankAccountTokenCreateRequest copyWith(
{String? clientId,
String? secret,
String? accessToken,
String? accountId}) {
return ProcessorStripeBankAccountTokenCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken,
accountId: accountId ?? this.accountId);
}