loading<T> static method

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

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

Implementation

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