value property
V
get
value
Gets the value of the key-value pair.
Implementation
V get value {
if (isSameType<V, String>()) return _value_String as V;
if (isSubtypeOfInspectable<V>()) return _value_COMObject;
if (isSubtypeOfWinRTEnum<V>()) return _value_enum;
return _value_Object as V;
}