getBody method

String? getBody(
  1. String key
)

Implementation

String? getBody(String key) {
  if (_httpCacheBody == null) {
    throw Exception("_httpCacheBody is not initialized");
  }
  return _httpCacheBody?.get(key);
}