fromStore static method

MiscStateViewModel fromStore(
  1. Store<CoreState> store
)

Implementation

static MiscStateViewModel fromStore(Store<CoreState> store) {
  return MiscStateViewModel(state: store.state.miscState);
}