SuccessScreenWidget constructor
const
SuccessScreenWidget({
- Key? key,
- required String? message,
- bool? showReceipt,
- bool? isTransferPage,
- bool? utility,
- String? billerName,
- String? customerNumber,
- dynamic detailsResponse,
- String? accountName,
- String? billerImage,
- required String? platform,
- required String? tenantId,
- required String? authToken,
- required String? baseUrl,
- required String? bannerImage,
- 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);