optOut method

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

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