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