getLogLevel static method
Returns the ComScore log level. @see ComScoreLogLevel @return ComScore log level
Implementation
static Future<ComScoreLogLevel?> getLogLevel() async {
var rawLogLevel = await _methodChannel.invokeMethod<int?>('getLogLevel');
return ComScoreLogLevel.getByValue(rawLogLevel ?? 0);
}