OrderItemEntity constructor

OrderItemEntity({
  1. int? amount,
  2. required String? appId,
  3. double? soldPrice,
  4. String? productId,
})

Implementation

OrderItemEntity({
  this.amount,
  required this.appId,
  this.soldPrice,
  this.productId,
});