copyWith method

Implementation

WebApiModulesHomeControlsInventorySearchInventorySearchAddToOrderRequest
    copyWith({String? orderId, int? insertAtIndex, String? sessionId}) {
  return WebApiModulesHomeControlsInventorySearchInventorySearchAddToOrderRequest(
      orderId: orderId ?? this.orderId,
      insertAtIndex: insertAtIndex ?? this.insertAtIndex,
      sessionId: sessionId ?? this.sessionId);
}