StopPinRequestDetails constructor

StopPinRequestDetails({
  1. required int signRequestId,
  2. PinRequestErrorType? errorType,
})

Implementation

StopPinRequestDetails({
  /// The ID given by Chrome in SignRequest.
  required int signRequestId,

  /// The error template. If present it is displayed to user. Intended to
  /// contain the reason for stopping the flow if it was caused by an error,
  /// e.g. MAX_ATTEMPTS_EXCEEDED.
  PinRequestErrorType? errorType,
}) : _wrapped = $js.StopPinRequestDetails(
        signRequestId: signRequestId,
        errorType: errorType?.toJS,
      );