getCapture method

Future<bool> getCapture ()

Returns whether the Logging is enabled or not

Implementation

static Future<bool> getCapture() async {
  final bool capture = await _channel.invokeMethod(LOGGER_GETCAPTURE);
  return capture;
}