copyWith method

SandboxProcessorTokenCreateRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? institutionId,
  4. 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);
}