static String getLabel(int? code) { if (code == null || !_errorCodes.containsKey(code)) { return 'UNKNOWN ERROR CODE - FAILURE'; } return ' "$code" : ${_errorCodes[0]!}'; }