addMapRequestOption method

void addMapRequestOption(
  1. dynamic key,
  2. RequestModel model
)

Adds a request model to the map for the given key.

Implementation

void addMapRequestOption(dynamic key, RequestModel model) {
  if (!isLogEnabled) return;
  mapKeys[key] = model;
}