done<T> static method

EndlessStateProperty<T> done<T>(
  1. Builder<T> builder
)

Convenience method for creating a EndlessStateProperty that resolves to a single value for the done state.

Implementation

static EndlessStateProperty<T> done<T>(Builder<T> builder) =>
    _EndlessStatePropertyValueWhenInState<T>(builder, EndlessState.done);