startEndlessVerifyFromMic method

Future startEndlessVerifyFromMic({
  1. double hopSeconds = 0.5,
  2. bool stopOnMatch = false,
  3. bool resetState = true,
})

Starts endless microphone verification.

Implementation

Future<dynamic> startEndlessVerifyFromMic({
  double hopSeconds = 0.5,
  bool stopOnMatch = false,
  bool resetState = true,
}) {
  return _speakerVerificationChannel.invokeMethod<dynamic>(
    'svStartEndlessVerifyFromMic',
    {
      'controllerId': controllerId,
      'hopSeconds': hopSeconds,
      'stopOnMatch': stopOnMatch,
      'resetState': resetState,
    },
  );
}