threeDSecureParams property

ThreeDSecureConfigurationParams? threeDSecureParams

Retrieves the configuration parameters for 3D secure.

Implementation

static ThreeDSecureConfigurationParams? get threeDSecureParams =>
    instance._threeDSecureParams;
void threeDSecureParams=(ThreeDSecureConfigurationParams? value)

Sets the configuration parameters for 3D secure.

Implementation

static set threeDSecureParams(ThreeDSecureConfigurationParams? value) {
  if (value == instance._threeDSecureParams) {
    return;
  }
  instance._threeDSecureParams = value;
  instance.markNeedsSettings();
}