OrderEntry constructor

const OrderEntry({
  1. String? orderId,
  2. String? locationId,
  3. int? version,
})

Implementation

const OrderEntry({
  this.orderId,
  this.locationId,
  this.version,
});