toStringValue method

String toStringValue()

Implementation

String toStringValue() {
  switch(this) {
    case MediaTag.videoSelfieLeft:
      return 'video_selfie_left';
    case MediaTag.videoSelfieRight:
      return 'video_selfie_right';
    case MediaTag.videoSelfieDown:
      return 'video_selfie_down';
    case MediaTag.videoSelfieHigh:
      return 'video_selfie_high';
    case MediaTag.videoSelfieZoomIn:
      return 'video_selfie_zoom_in';
    case MediaTag.videoSelfieZoomOut:
      return 'video_selfie_zoom_out';
    case MediaTag.videoSelfieSmile:
      return 'video_selfie_smile';
    case MediaTag.videoSelfieEyes:
      return 'video_selfie_eyes';
    case MediaTag.videoSelfieScan:
      return 'video_selfie_scan';
    case MediaTag.videoSelfieOneShot:
      return 'video_selfie_oneshot';
    case MediaTag.photoSelfie:
      return 'photo_selfie';
    case MediaTag.photoIdFront:
      return 'photo_id_front';
    case MediaTag.photoIdBack:
      return 'photo_id_back';
    case MediaTag.photoIdPortrait:
      return 'photo_id_portrait';
    case MediaTag.blank:
      return 'video_selfie_blank';
  }
}