isLogging property

  1. @override
Future<bool> isLogging
override

Implementation

@override
Future<bool> get isLogging async {
  try {
    final invoke =
        await methodChannel.invokeMethod<bool>(MethodNames.isLogging);
    return invoke ?? false;
  } catch (error) {
    debugPrint(error.toString());
    return false;
  }
}