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