StopPinRequestDetails constructor
StopPinRequestDetails({
- required int signRequestId,
- 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,
);