effectiveStartupScreenId property

AFScreenID get effectiveStartupScreenId

returns the screen id of the startup screen.

This varies depending on the afib mode (e.g. prototype mode has a different starutp screen than debug/production)

Implementation

AFScreenID get effectiveStartupScreenId {
  final forced = forcedStartupScreen;
  if(forced != null) {
    return forced;
  }
  return AFUIScreenID.screenStartupWrapper;
}