refreshCacheHighlights method

Future<void> refreshCacheHighlights()

Implementation

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