runtime property

ComponentRuntime get runtime

Implementation

static ComponentRuntime get runtime {
  final r = _runtime;
  if (r == null) {
    throw StateError('No RenderContext active');
  }
  return r;
}