copyWith method
Implementation
ProcessorStripeBankAccountTokenCreateResponse copyWith(
{String? stripeBankAccountToken, String? requestId}) {
return ProcessorStripeBankAccountTokenCreateResponse(
stripeBankAccountToken:
stripeBankAccountToken ?? this.stripeBankAccountToken,
requestId: requestId ?? this.requestId);
}