onSuccess abstract method

FidoUafAttestationInformationGetter onSuccess(
  1. dynamic onSuccess(
    1. FidoUafAttestationInformation?
    )
)

Specifies the object that will be invoked if the FIDO UAF attestation information could be obtained. The specified object will receive a FidoUafAttestationInformation.

IMPORTANT
Providing the onSuccess is required.

Params:

  • onSuccess: the Function which will be invoked if the FIDO UAF attestation information could be obtained.

Returns: a FidoUafAttestationInformationGetter object.

Implementation

FidoUafAttestationInformationGetter onSuccess(
  Function(FidoUafAttestationInformation?) onSuccess,
);