resolveWith<T> static method

EndlessStateProperty<T> resolveWith<T>(
  1. StateBuilder<T> builder
)

A LoadStateProperty resolver that provides the builder with the set of current states so that it can dynamically choose what to build based on those states.

Implementation

static EndlessStateProperty<T> resolveWith<T>(StateBuilder<T> builder) =>
    _EndlessStatePropertyWhen<T>(builder);