maybeOf static method

SliverAnimatedListState? maybeOf(
  1. BuildContext context
)

The SliverAnimatedListState from the closest instance of this class that encloses the given context.

This method is typically used by SliverAnimatedList item widgets that insert or remove items in response to user input.

If no SliverAnimatedList surrounds the context given, then this function will return null.

This method can be expensive (it walks the element tree).

This method does not create a dependency, and so will not cause rebuilding when the state changes.

See also:

Implementation

static SliverAnimatedListState? maybeOf(BuildContext context) {
  return context.findAncestorStateOfType<SliverAnimatedListState>();
}