获取当前摄像头状态
return 当前摄像头是否开启
Future<bool> isEnableCamera() async { bool enabled = await _channel.invokeMethod('isEnableCamera'); return enabled; }