copyWith method
Implementation
WebApiModulesHomeControlsInventorySearchInventorySearchAddToOrderRequest
copyWith(
{String? orderId,
int? insertAtIndex,
DateTime? pickDate,
String? pickTime,
DateTime? fromDate,
String? fromTime,
DateTime? toDate,
String? toTime,
String? sessionId}) {
return WebApiModulesHomeControlsInventorySearchInventorySearchAddToOrderRequest(
orderId: orderId ?? this.orderId,
insertAtIndex: insertAtIndex ?? this.insertAtIndex,
pickDate: pickDate ?? this.pickDate,
pickTime: pickTime ?? this.pickTime,
fromDate: fromDate ?? this.fromDate,
fromTime: fromTime ?? this.fromTime,
toDate: toDate ?? this.toDate,
toTime: toTime ?? this.toTime,
sessionId: sessionId ?? this.sessionId);
}