getLaunchCount static method

int getLaunchCount(
  1. LaunchType type
)

Retrieves the launch count for a given LaunchType.

Implementation

static int getLaunchCount(LaunchType type) {
  return _launchCounts[type] ?? 0;
}