UtilityPaymentWidget constructor

const UtilityPaymentWidget({
  1. Key? key,
  2. required String? authToken,
  3. required String? platform,
  4. required String? tenantId,
  5. String? baseUrl,
  6. required String? notificationType,
  7. bool? isUserHasAccount,
  8. String? accountName,
  9. String? accountNumber,
  10. required String? deviceId,
})

Implementation

const UtilityPaymentWidget({
  Key? key,
  required this.authToken,
  required this.platform,
  required this.tenantId,
  this.baseUrl,
  required this.notificationType,
  bool? isUserHasAccount,
  this.accountName,
  this.accountNumber,
  required this.deviceId,
})  : this.isUserHasAccount = isUserHasAccount ?? false,
      super(key: key);