TransactionSummary constructor

TransactionSummary({
  1. String? mobileNo,
  2. double? txnAmount,
  3. List? productDetails,
})

Implementation

TransactionSummary({
  this.mobileNo,
  this.txnAmount,
  this.productDetails,
});