clearCache static method

void clearCache(
  1. String callName
)

Implementation

static void clearCache(String callName) => _apiCache.keys
    .toSet()
    .forEach((k) => k.callName == callName ? _apiCache.remove(k) : null);