toSmoothGroupEventIdMode method

SmoothGroupEventIdMode toSmoothGroupEventIdMode()

Implementation

SmoothGroupEventIdMode toSmoothGroupEventIdMode() {
  switch (this) {
    case 'NO_EVENT_ID':
      return SmoothGroupEventIdMode.noEventId;
    case 'USE_CONFIGURED':
      return SmoothGroupEventIdMode.useConfigured;
    case 'USE_TIMESTAMP':
      return SmoothGroupEventIdMode.useTimestamp;
  }
  throw Exception('$this is not known in enum SmoothGroupEventIdMode');
}