fromEnumToString static method

String fromEnumToString(
  1. DataLogType type
)

Converts DataLogType to String

Implementation

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