recreate<T> method

void recreate<T>(
  1. CreatorBase<T> creator
)

Recreate the state of a creator. It is typically used when things outside the graph changes. For example, click to retry after a network error. If you use this method in a creative way, let us know.

Implementation

void recreate<T>(CreatorBase<T> creator) {
  _element<T>(creator, recreate: false).recreate();
}