nameOf static method

String? nameOf(
  1. SortMode? value
)

Implementation

static String? nameOf(SortMode? value) {
  return value != null ? value.toString().split(".")[1] : null;
}