copyWith method
Implementation
WebApiModulesUtilitiesInventoryPurchaseUtilityUpdateInventoryPurchaseSessionRequest
copyWith({String? sessionId, String? inventoryId, int? quantity}) {
return WebApiModulesUtilitiesInventoryPurchaseUtilityUpdateInventoryPurchaseSessionRequest(
sessionId: sessionId ?? this.sessionId,
inventoryId: inventoryId ?? this.inventoryId,
quantity: quantity ?? this.quantity);
}