getMaxVideoForwarding method

Future<MaxVideoForwarding> getMaxVideoForwarding()

Returns the maximum number of video streams that can be transmitted to the local participant.

Implementation

Future<MaxVideoForwarding> getMaxVideoForwarding() async {
  var result =
      await _methodChannel.invokeMethod<num>("getMaxVideoForwarding");
  return Future.value(result as MaxVideoForwarding);
}