BillPaymentConfirmWidget constructor

const BillPaymentConfirmWidget({
  1. Key? key,
  2. required String? authToken,
  3. required String? platform,
  4. required String? tenantId,
  5. required String? bannerImage,
  6. String? baseUrl,
  7. required String? deviceId,
  8. String? billerName,
  9. String? billerImage,
  10. String? billerServiceCode,
  11. required String? recipient,
  12. String? recipientName,
  13. String? productCode,
  14. double? amount,
  15. String? accountName,
  16. String? accountNumber,
  17. required String? notificationType,
  18. bool? showFee,
  19. bool? isAirtime,
  20. bool? isData,
  21. bool? isDstv,
  22. bool? isGotv,
  23. bool? isUtility,
  24. bool? saveBeneficiary,
})

Implementation

const BillPaymentConfirmWidget({
  Key? key,
  required this.authToken,
  required this.platform,
  required this.tenantId,
  required this.bannerImage,
  this.baseUrl,
  required this.deviceId,
  this.billerName,
  this.billerImage,
  this.billerServiceCode,
  required this.recipient,
  this.recipientName,
  this.productCode,
  this.amount,
  this.accountName,
  this.accountNumber,
  required this.notificationType,
  bool? showFee,
  bool? isAirtime,
  bool? isData,
  bool? isDstv,
  bool? isGotv,
  bool? isUtility,
  bool? saveBeneficiary,
})  : this.showFee = showFee ?? false,
      this.isAirtime = isAirtime ?? false,
      this.isData = isData ?? false,
      this.isDstv = isDstv ?? false,
      this.isGotv = isGotv ?? false,
      this.isUtility = isUtility ?? false,
      this.saveBeneficiary = saveBeneficiary ?? false,
      super(key: key);