removeRequestModel method
Removes and returns a request model by key.
Implementation
RequestModel? removeRequestModel(dynamic key) {
if (!isLogEnabled) return null;
return mapKeys.remove(key);
}
Removes and returns a request model by key.
RequestModel? removeRequestModel(dynamic key) {
if (!isLogEnabled) return null;
return mapKeys.remove(key);
}