build method

  1. @override
Widget build (BuildContext context)
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,
  );
}