clearCache method

Future<void> clearCache()

Implementation

Future<void> clearCache() async {
  if (_state == null) {
    throw StateError('Interactive3dController is not attached to a widget');
  }
  await _state!.clearCache();
}