getFlashStatus method

Future<bool?> getFlashStatus()

Get flashlight status

Implementation

Future<bool?> getFlashStatus() async {
  try {
    return await _channel.invokeMethod('getFlashInfo');
  } on PlatformException catch (e) {
    throw CameraException(e.code, e.message);
  }
}