toAppLaunchConfigurationStatus method

AppLaunchConfigurationStatus toAppLaunchConfigurationStatus()

Implementation

AppLaunchConfigurationStatus toAppLaunchConfigurationStatus() {
  switch (this) {
    case 'NOT_CONFIGURED':
      return AppLaunchConfigurationStatus.notConfigured;
    case 'CONFIGURED':
      return AppLaunchConfigurationStatus.configured;
  }
  throw Exception('$this is not known in enum AppLaunchConfigurationStatus');
}