InheritedStore constructor

InheritedStore({
  1. Key? key,
  2. required Map data,
  3. required ChangeCallback setFunction,
  4. required dynamic change,
  5. required Widget child,
})

Implementation

InheritedStore({
  Key? key,
  required this.data,
  required this.setFunction,
  required this.change,
  required Widget child,
}) : super(key: key, child: child);