InheritedProvider<T> constructor

const InheritedProvider<T>({Key key, @required T value, UpdateShouldNotify<T> updateShouldNotify, Widget child })

Implementation

const InheritedProvider({
  Key key,
  @required T value,
  UpdateShouldNotify<T> updateShouldNotify,
  Widget child,
})  : _value = value,
      _updateShouldNotify = updateShouldNotify,
      super(key: key, child: child);