requestTypeToString static method

String requestTypeToString(
  1. RequestType requestType
)

Implementation

static String requestTypeToString(RequestType requestType) {
  return (requestType.toString()).isNotEmpty
      ? (requestType.toString().substring(12))
      : "";
}