rebuild abstract method

LoaderState<Content> rebuild(
  1. void updates(
    1. LoaderStateBuilder<Content>
    )
)

Rebuilds the instance.

The result is the same as this instance but with updates applied. updates is a function that takes a builder B.

Implementation

LoaderState<Content> rebuild(
    void Function(LoaderStateBuilder<Content>) updates);