convertToLogOptions static method

LogOptions convertToLogOptions(
  1. String name
)

Implementation

static LogOptions convertToLogOptions(String name) => LogOptions(
    LogLevel.values.firstWhere((logLevel) => logLevel.name == name.trim(),
        orElse: () => LogLevel.off));