removeRequestModel method

RequestModel? removeRequestModel(
  1. dynamic key
)

Removes and returns a request model by key.

Implementation

RequestModel? removeRequestModel(dynamic key) {
  if (!isLogEnabled) return null;
  return mapKeys.remove(key);
}