putBody method

void putBody(
  1. String key,
  2. String value
)

Implementation

void putBody(String key, String value) {
  if (_httpCacheBody == null) {
    throw Exception("_httpCacheBody is not initialized");
  }
  _httpCacheBody?.put(key, value);
}