toLoggingLevel method
Implementation
LoggingLevel toLoggingLevel() {
switch (this) {
case 'ERROR':
return LoggingLevel.error;
}
throw Exception('$this is not known in enum LoggingLevel');
}
LoggingLevel toLoggingLevel() {
switch (this) {
case 'ERROR':
return LoggingLevel.error;
}
throw Exception('$this is not known in enum LoggingLevel');
}