mapResponseCode static method

String mapResponseCode(
  1. String responseCode
)

Implementation

static String mapResponseCode(String responseCode) {
  String? responseMessage = responseCodeMap[responseCode];
  if (responseMessage == null) {
    return "Unknown Code: " + responseCode;
  }
  return responseMessage;
}