copyWith method
Implementation
WebApiModulesWarehouseCheckInCheckInOrder copyWith(
{String? orderId,
String? orderNo,
String? orderDescription,
int? priority}) {
return WebApiModulesWarehouseCheckInCheckInOrder(
orderId: orderId ?? this.orderId,
orderNo: orderNo ?? this.orderNo,
orderDescription: orderDescription ?? this.orderDescription,
priority: priority ?? this.priority);
}