isSpeaking method

Future<bool> isSpeaking(
  1. Participant participant
)

Returns the participant's current speaking status for the active talker indicator. The participant parameter refers to the participant whose speaking status the local participant would like to receive.

Implementation

Future<bool> isSpeaking(Participant participant) async {
  return Future.value(await _methodChannel.invokeMethod<bool>(
      "isSpeaking", participant.toJson()));
}