BillsPaymentWidget constructor
const
BillsPaymentWidget({
- Key? key,
- required String? authToken,
- required String? platform,
- required String? tenantId,
- required String? bannerImage,
- required double? accountBalance,
- String? baseUrl,
- bool? isAirtime,
- bool? isElectricity,
- bool? isTv,
- bool? isData,
- bool? isUserHasAccount,
- String? accountName,
- String? accountNumber,
- required String? notificationType,
- required String? deviceId,
Implementation
const BillsPaymentWidget({
Key? key,
required this.authToken,
required this.platform,
required this.tenantId,
required this.bannerImage,
required this.accountBalance,
this.baseUrl,
bool? isAirtime,
bool? isElectricity,
bool? isTv,
bool? isData,
bool? isUserHasAccount,
this.accountName,
this.accountNumber,
required this.notificationType,
required this.deviceId,
}) : this.isAirtime = isAirtime ?? false,
this.isElectricity = isElectricity ?? false,
this.isTv = isTv ?? false,
this.isData = isData ?? false,
this.isUserHasAccount = isUserHasAccount ?? false,
super(key: key);