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