toMatchmakingConfigurationStatus method

MatchmakingConfigurationStatus toMatchmakingConfigurationStatus()

Implementation

MatchmakingConfigurationStatus toMatchmakingConfigurationStatus() {
  switch (this) {
    case 'CANCELLED':
      return MatchmakingConfigurationStatus.cancelled;
    case 'COMPLETED':
      return MatchmakingConfigurationStatus.completed;
    case 'FAILED':
      return MatchmakingConfigurationStatus.failed;
    case 'PLACING':
      return MatchmakingConfigurationStatus.placing;
    case 'QUEUED':
      return MatchmakingConfigurationStatus.queued;
    case 'REQUIRES_ACCEPTANCE':
      return MatchmakingConfigurationStatus.requiresAcceptance;
    case 'SEARCHING':
      return MatchmakingConfigurationStatus.searching;
    case 'TIMED_OUT':
      return MatchmakingConfigurationStatus.timedOut;
  }
  throw Exception(
      '$this is not known in enum MatchmakingConfigurationStatus');
}