Store constructor

const Store({
  1. Key? key,
  2. required Widget child,
  3. Map data = const {},
  4. ChangeCallback? onValueModified,
})

Implementation

const Store({
  Key? key,
  required this.child,
  this.data = const {},
  this.onValueModified,
}) : super(key: key);