VCardVersion enum
vCard format versions.
Each version corresponds to a different specification:
- v21: vCard 2.1 (legacy) - https://web.archive.org/web/20000815081252/http://www.imc.org/pdi/vcard-21.txt
- v3: vCard 3.0 (most commonly used/supported) - RFC 2425 (https://www.ietf.org/rfc/rfc2425.txt) and RFC 2426 (https://www.ietf.org/rfc/rfc2426.txt)
- v4: vCard 4.0 (newest standard) - RFC 6350 (https://www.rfc-editor.org/rfc/rfc6350.html)
Values
- v21 → const VCardVersion
-
vCard version 2.1 (legacy format)
Specification: https://web.archive.org/web/20000815081252/http://www.imc.org/pdi/vcard-21.txt
- v3 → const VCardVersion
-
vCard version 3.0 (most commonly used/supported)
Specifications:
- v4 → const VCardVersion
-
vCard version 4.0 (newest standard)
Specification: https://www.rfc-editor.org/rfc/rfc6350.html
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
VCardVersion> - A constant List of the values in this enum, in order of their declaration.