of static method

Implementation

static InheritedDataProvider of(BuildContext context) {
  final InheritedDataProvider? result =
      context.dependOnInheritedWidgetOfExactType<InheritedDataProvider>();
  assert(result != null, 'No ScrollController in context');
  return result!;
}