jsonNodeKey property
String
get
jsonNodeKey
Return value of @JsonValue annotation 'name' if present otherwise null.
Implementation
String get jsonNodeKey {
bool predicate(TypeAnnotation annotation) => annotation.name == "JsonValue";
return annotations.firstBy(predicate)?.data["tag"] ?? name;
}