TransferWidget constructor
const
TransferWidget({
- Key? key,
- required String? authToken,
- required String? platform,
- required String? tenantId,
- required String? bannerImage,
- String? baseUrl,
- bool? isTrannfer,
- bool? isUsername,
- bool? isUssd,
- bool? isPhonenumber,
- required String? accountName,
- required String? accountNumber,
- required String? deviceId,
- required String? notificationType,
- required double? amount,
Implementation
const TransferWidget({
Key? key,
required this.authToken,
required this.platform,
required this.tenantId,
required this.bannerImage,
this.baseUrl,
bool? isTrannfer,
bool? isUsername,
bool? isUssd,
bool? isPhonenumber,
required this.accountName,
required this.accountNumber,
required this.deviceId,
required this.notificationType,
required this.amount,
}) : this.isTrannfer = isTrannfer ?? false,
this.isUsername = isUsername ?? false,
this.isPhonenumber = isPhonenumber ?? false,
this.isUssd = isUssd ?? false,
super(key: key);