loggerNameOf function

String loggerNameOf(
  1. Type type
)

Converts a type name to snake case

Implementation

String loggerNameOf(Type type) {
  return ReCase("$type").camelCase;
}