fromEnumToString static method

String fromEnumToString(
  1. LogLevel? type
)

Converts LogLevel to String

Implementation

static String fromEnumToString(LogLevel? type) {
  return type.toString();
}