toStringValue method

String toStringValue()

Implementation

String toStringValue() {
  switch (this) {
    case VerificationAction.blank:
      return 'blank';
    case VerificationAction.oneShot:
      return 'one_shot';
    case VerificationAction.headDown:
      return 'head_down';
    case VerificationAction.eyeBlink:
      return 'eye_blank';
    case VerificationAction.headLeft:
      return 'head_left';
    case VerificationAction.headRight:
      return 'head_right';
    case VerificationAction.headUp:
      return 'head_up';
    case VerificationAction.scan:
      return 'scan';
    case VerificationAction.smile:
      return 'smile';
  }
}