codeValue static method

String codeValue(
  1. int code
)

Implementation

static String codeValue(int code) {
  if (_asString.containsKey(code)) {
    return _asString[code]!;
  } else {
    return "Status Code $code Unknown";
  }
}