copyWith method

Implementation

WebApiModulesWarehouseCheckInCheckInRemoveOrderResponse copyWith({
  int? status,
  String? message,
  List<WebApiModulesWarehouseCheckInCheckInOrder>? orders,
}) {
  return WebApiModulesWarehouseCheckInCheckInRemoveOrderResponse(
    status: status ?? this.status,
    message: message ?? this.message,
    orders: orders ?? this.orders,
  );
}