recreate<T> method
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();
}