handleRspAlertStr function

String handleRspAlertStr(
  1. Request request
)

Implementation

String handleRspAlertStr(Request request) {
  String str = '';
  Map<String, String>? headers = request.headers;
  if (headers.isBlank == false &&
      headers[ConstKey.rspAlert] != null &&
      headers[ConstKey.rspAlertStr].isBlank == false) {
    str = headers[ConstKey.rspAlertStr] ?? '';
  }
  return str;
}