TransactionModel constructor

const TransactionModel({
  1. required String transactionType,
  2. String? billingRefNo,
  3. String? paymentAmount,
  4. String? mobileNumberForEChargeSlip,
})

A model class for pine lab transactions. transactionType is the transaction type which is consumed as long value by the device. billingRefNo is the billing reference number. paymentAmount is the payment amount which is consumed as long value. mobileNumberForEChargeSlip is the mobile number for eChargeSlip.

Implementation

const TransactionModel({
  required this.transactionType,
  this.billingRefNo,
  this.paymentAmount,
  this.mobileNumberForEChargeSlip,
});