switchCamera method

Future<int> switchCamera ()

切换摄像头

Implementation

Future<int> switchCamera() async {
  IntValue reply = await _api.switchCamera();
  return reply.value;
}