BasketOperationModel constructor

BasketOperationModel({
  1. required BasketOperationSteps step,
  2. required String productId,
  3. num? price,
  4. num? quantity,
  5. CurrencyTypes? currency,
  6. String? sessionId,
  7. String? userId,
  8. String? device,
  9. String? os,
  10. String? lang,
})

Implementation

BasketOperationModel({
  required this.step,
  required this.productId,
  this.price,
  this.quantity,
  this.currency,
  this.sessionId,
  this.userId,
  this.device,
  this.os,
  this.lang,
});