accessAppPlatformInfo method

AFAppPlatformInfoState accessAppPlatformInfo()
inherited

Access platform-related info like you app versions, and what OS you are running on.

Note that this information does not need to be in your state view, because none of it can change during the course of your app's execution. It is all static.

Implementation

AFAppPlatformInfoState accessAppPlatformInfo() {

  final publicState = AFibF.g.internalOnlyActiveStore.state.public;
  return publicState.appPlatformInfo;
}