unlockSession method

Future<void> unlockSession({
  1. Map<String, dynamic> parameters = const <String, dynamic>{},
})

Unlock the session with biometrics.

The parameters passed in here is for the GigyaInfoPrompt. (Only for Android) The Map that needs to be passed is as follows: { 'title': 'SampleTitle', 'subtitle': 'SampleSubtitle', 'description': 'SampleDescription', }

For more details, see Android Documentation

Implementation

Future<void> unlockSession({
  Map<String, dynamic> parameters = const <String, dynamic>{},
}) {
  throw UnimplementedError('unlockSession() is not implemented.');
}