FundsVerificationRequest constructor

FundsVerificationRequest({
  1. String? documentBase64Strict,
  2. Uint8List? file,
})

Implementation

FundsVerificationRequest({
  this.documentBase64Strict,
  this.file,
}) : assert(documentBase64Strict != null || file != null,
"Either documentBase64Strict or file must be provided");