fromState<T> method

T fromState<T>(
  1. BuildContext context,
  2. T builder(
    1. Watched state
    )
)

Implementation

T fromState<T>(BuildContext context, T Function(Watched state) builder) =>
    builder(_state.watched(context));