build method
- @override
override
Implementation
@override
Widget build(BuildContext context, R value) {
assert(() {
EasyState.debugCheckInvalidValueType?.call(value);
return true;
}());
return InheritedProvider<R>(
value: value,
updateShouldNotify: updateShouldNotify,
child: child,
);
}