fromStore static method

UserStateViewModel fromStore(
  1. Store<CoreState> store
)

Implementation

static UserStateViewModel fromStore(Store<CoreState> store) {
  return UserStateViewModel(userState: store.state.userState!);
}