optIn method

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

Opt into 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> optIn({
  Map<String, dynamic> parameters = const <String, dynamic>{},
}) {
  throw UnimplementedError('optIn() is not implemented.');
}