getNextEmbeddingFromMic method

Future getNextEmbeddingFromMic()

Captures the next enrollment embedding from the microphone.

Implementation

Future<dynamic> getNextEmbeddingFromMic() {
  return _speakerVerificationChannel.invokeMethod<dynamic>(
    'svGetNextEmbeddingFromMic',
    {'controllerId': controllerId},
  );
}