useFrontCamera method
Implementation
Future<void> useFrontCamera(bool enable, int channel) async {
final promise = callMethod(ZegoFlutterEngine.instance, 'useFrontCamera',
[enable, getPublishChannel(channel)]);
final result = await promiseToFuture(promise);
}