FingerprintUserVerificationHandler constructor Null safety

FingerprintUserVerificationHandler(
  1. String operationId
)

Default constructor that creates a FingerprintUserVerificationHandler.

Params:

  • operationId: the id of the started call that can be used to identify platform calls that belong to each started call. Should be unique.

Implementation

factory FingerprintUserVerificationHandler(String operationId) {
  return FingerprintUserVerificationHandlerImpl(operationId);
}