toShortString function

String toShortString(
  1. Enum method
)

Used when converting enum

Implementation

String toShortString(Enum method) {
  return method.toString().split('.').last;
}