removeFromCache method

Future<void> removeFromCache(
  1. List<String> names
)

Implementation

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