ScopeModelCore<W extends ScopeModelCore<W, E, M>, E extends ScopeModelElementBase<W, E, M>, M extends Object> constructor

const ScopeModelCore<W extends ScopeModelCore<W, E, M>, E extends ScopeModelElementBase<W, E, M>, M extends Object>({
  1. Key? key,
  2. Object? tag,
  3. Widget child = const _NullWidget(),
})

Creates the widget half of a model scope.

Implementation

const ScopeModelCore({
  super.key,
  super.tag,
  super.child, // Not used by default. You can use it at your own discretion.
});