PaymentSDKCardApproval constructor

PaymentSDKCardApproval({
  1. required String validationUrl,
  2. required int binLength,
  3. required bool blockIfNoResponse,
})

Constructs a PaymentSDKCardApproval instance.

  • validationUrl: The URL used for validation.
  • binLength: The length of the BIN.
  • blockIfNoResponse: A flag indicating whether to block if there is no response.

Implementation

PaymentSDKCardApproval({
  required this.validationUrl,
  required this.binLength,
  required this.blockIfNoResponse,
});