ScopedModelDescendant<T extends Model> constructor

ScopedModelDescendant<T extends Model>({
  1. required ScopedModelDescendantBuilder<T> builder,
  2. Widget? child,
  3. bool rebuildOnChange = true,
})

Creates the ScopedModelDescendant

Implementation

ScopedModelDescendant({
  required this.builder,
  this.child,
  this.rebuildOnChange = true,
});