BeneficiariesWidget constructor

const BeneficiariesWidget({
  1. Key? key,
  2. String? platform,
  3. String? tenant,
  4. String? authorization,
  5. String? billType,
  6. required String? baseUrl,
  7. bool? isTransfer,
})

Implementation

const BeneficiariesWidget({
  Key? key,
  this.platform,
  this.tenant,
  this.authorization,
  this.billType,
  required this.baseUrl,
  bool? isTransfer,
})  : this.isTransfer = isTransfer ?? true,
      super(key: key);