isFrontCamera method

Future<bool?> isFrontCamera()

Set whether to use the front camera (supports only the Android and iOS platforms)

Implementation

Future<bool?> isFrontCamera() async {
  var result = await _channel.invokeMethod('isFrontCamera');
  return V2TXLiveFlutterResult.boolValue(result);
}