value property

String get value

Returns the actual value to use from this AutocompleteKind.

Implementation

String get value {
  return switch (this) {
    currentPassword => 'current-password',
    newPassword => 'new-password',
    username => 'username',
  };
}