SuccessScreenWidget constructor

const SuccessScreenWidget({
  1. Key? key,
  2. required String? message,
  3. bool? showReceipt,
  4. bool? isTransferPage,
  5. bool? utility,
  6. String? billerName,
  7. String? customerNumber,
  8. dynamic detailsResponse,
  9. String? accountName,
  10. String? billerImage,
  11. required String? platform,
  12. required String? tenantId,
  13. required String? authToken,
  14. required String? baseUrl,
  15. required String? bannerImage,
  16. bool? isAirtime,
})

Implementation

const SuccessScreenWidget({
  Key? key,
  required this.message,
  bool? showReceipt,
  bool? isTransferPage,
  bool? utility,
  this.billerName,
  this.customerNumber,
  this.detailsResponse,
  this.accountName,
  this.billerImage,
  required this.platform,
  required this.tenantId,
  required this.authToken,
  required this.baseUrl,
  required this.bannerImage,
  bool? isAirtime,
})  : this.showReceipt = showReceipt ?? false,
      this.isTransferPage = isTransferPage ?? false,
      this.utility = utility ?? false,
      this.isAirtime = isAirtime ?? false,
      super(key: key);