TransactionReceiptWidget constructor

const TransactionReceiptWidget({
  1. Key? key,
  2. required dynamic detailsResponse,
  3. required String? accountName,
  4. String? billerName,
  5. String? billerImage,
  6. String? customerNumber,
  7. required String? bannerImage,
  8. bool? utility,
  9. bool? isAirtime,
})

Implementation

const TransactionReceiptWidget({
  Key? key,
  required this.detailsResponse,
  required this.accountName,
  this.billerName,
  this.billerImage,
  this.customerNumber,
  required this.bannerImage,
  bool? utility,
  bool? isAirtime,
})  : this.utility = utility ?? false,
      this.isAirtime = isAirtime ?? false,
      super(key: key);