JsonNode<T> class abstract ast decoder encoder

A single JSON node representation consisting of a String key and T data.

Implementers

Constructors

JsonNode({required String key, required T data, List<TypeAnnotation> annotations = const <TypeAnnotation>[]})
extends JsonNode
const

Properties

annotations List<TypeAnnotation>
Metadata annotations which alter (de)serialization of this node.
final
data → T
The JSON data of type T.
final
hashCode int
The hash code for this object.
no setterinherited
key String
The JSON key (tag name).
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringify String
Convert to formatted JSON String.
no setter

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