startEndlessVerifyFromMic method
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,
},
);
}