clearCache static method

Future<bool> clearCache()

Clear compression cache

Implementation

static Future<bool> clearCache() async {
  try {
    final result = await _channel.invokeMethod('clearCache');
    return result is bool ? result : false;
  } catch (e) {
    return false;
  }
}