copyWith method

Implementation

WebApiModulesUtilitiesInventoryPurchaseUtilityStartInventoryPurchaseSessionRequest
    copyWith({String? inventoryId, int? quantity}) {
  return WebApiModulesUtilitiesInventoryPurchaseUtilityStartInventoryPurchaseSessionRequest(
      inventoryId: inventoryId ?? this.inventoryId,
      quantity: quantity ?? this.quantity);
}