LogEntryLevel.fromJson constructor

LogEntryLevel.fromJson(
  1. String value
)

Implementation

factory LogEntryLevel.fromJson(String value) =>
    LogEntryLevel.values.firstWhere((e) => e.value == value);