copyWith method
      
SandboxTransferSimulateRequest
copyWith({ 
    
    
- String? clientId,
- String? secret,
- String? transferId,
- String? eventType,
- TransferFailure? failureReason,
Implementation
SandboxTransferSimulateRequest copyWith(
    {String? clientId,
    String? secret,
    String? transferId,
    String? eventType,
    TransferFailure? failureReason}) {
  return SandboxTransferSimulateRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      transferId: transferId ?? this.transferId,
      eventType: eventType ?? this.eventType,
      failureReason: failureReason ?? this.failureReason);
}