copyWith method
SandboxProcessorTokenCreateRequest
copyWith({
- String? clientId,
- String? secret,
- String? institutionId,
- SandboxProcessorTokenCreateRequestOptions? options,
Implementation
SandboxProcessorTokenCreateRequest copyWith(
{String? clientId,
String? secret,
String? institutionId,
SandboxProcessorTokenCreateRequestOptions? options}) {
return SandboxProcessorTokenCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
institutionId: institutionId ?? this.institutionId,
options: options ?? this.options);
}