requestType property

PinRequestType? get requestType

The type of code requested. Default is PIN.

Implementation

PinRequestType? get requestType =>
    _wrapped.requestType?.let(PinRequestType.fromJS);
set requestType (PinRequestType? v)

Implementation

set requestType(PinRequestType? v) {
  _wrapped.requestType = v?.toJS;
}