PinResponseDetails constructor

PinResponseDetails({
  1. String? userInput,
})

Implementation

PinResponseDetails(
    {
    /// The code provided by the user. Empty if user closed the dialog or some
    /// other error occurred.
    String? userInput})
    : _wrapped = $js.PinResponseDetails(userInput: userInput);