state<St> static method

St? state<St>(
  1. BuildContext context, {
  2. Object? debug,
})

Get the state, without a StoreConnector.

Implementation

static St? state<St>(BuildContext context, {Object? debug}) => //
    of<St>(context, debug).state;