toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AuthTypeValue.no:
      return 'no';
    case AuthTypeValue.password:
      return 'password';
  }
}