clearCache static method
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;
}
}