Data constructor

Data({
  1. String? orderId,
  2. int? amount,
  3. String? merchantId,
  4. String? tableId,
})

Implementation

Data({
  this.orderId,
  this.amount,
  this.merchantId,
  this.tableId,
});