StoreConverter<S, ViewModel> typedef

StoreConverter<S, ViewModel> = ViewModel Function(Store<S> store)

Convert the entire Store into a ViewModel. The ViewModel will be used to build a Widget using the ViewModelBuilder.

Implementation

typedef StoreConverter<S, ViewModel> = ViewModel Function(
  Store<S> store,
);