acceptAuthenticationRequest method

Future<void> acceptAuthenticationRequest(
  1. String pin
)

Accepts pin authentication and sent pin to the OneginiSdk.

Implementation

Future<void> acceptAuthenticationRequest(String pin) async {
  await api.pinAcceptAuthenticationRequest(pin);
}