stateBindingFor method

StateBinding stateBindingFor(
  1. String view
)

The state binding for view, or a neutral (none, no empty) binding when the view declares none — an undeclared view is not a violation, it simply binds nothing.

Implementation

StateBinding stateBindingFor(String view) =>
    stateBindings[view] ??
    StateBinding(view: view, error: StateErrorKind.none, empty: false);