BillPaymentConfirmWidget constructor
const
BillPaymentConfirmWidget({
- Key? key,
- required String? authToken,
- required String? platform,
- required String? tenantId,
- required String? bannerImage,
- String? baseUrl,
- required String? deviceId,
- String? billerName,
- String? billerImage,
- String? billerServiceCode,
- required String? recipient,
- String? recipientName,
- String? productCode,
- double? amount,
- String? accountName,
- String? accountNumber,
- required String? notificationType,
- bool? showFee,
- bool? isAirtime,
- bool? isData,
- bool? isDstv,
- bool? isGotv,
- bool? isUtility,
- 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);