unsubscribeLiveMix method

Future<int> unsubscribeLiveMix(
  1. RCRTCMediaType type
)

Implementation

Future<int> unsubscribeLiveMix(
  RCRTCMediaType type,
) async {
  Map<String, dynamic> arguments = {
    'type': type.index,
  };
  int code = await _channel.invokeMethod('unsubscribeLiveMix', arguments) ?? -1;
  return code;
}