clearCache method

Future<void> clearCache()

Clear cache resources related to files and whiteboards.

Supported version: 2.0.0 and above

Calling time: After the SDK is initialized and you log in to a room, you can proactively call this API to clear resources in the room before leaving the room.

Implementation

Future<void> clearCache() async {
  return _channel.invokeMethod('clearCache');
}