copyWith method

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