InheritedModel<T> constructor

const InheritedModel<T>({Key key, Widget child })

Creates an inherited widget that supports dependencies qualified by "aspects", i.e. a descendant widget can indicate that it should only be rebuilt if a specific aspect of the model changes.

Implementation

const InheritedModel({ Key key, Widget child }) : super(key: key, child: child);