JsonArray<T> class ast decoder encoder

A JSON element containing an Array value.

Example:

  "padawans":["Anakin", "Obi-Wan"]

key = padawans data = "Anakin", "Obi-Wan" T = String

Inheritance

Constructors

JsonArray({required String key, required T data})
Construct a new JsonArray instance.
const

Properties

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

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

Static Methods

parse({required String key, required String content, int depth = 1}) JsonArray
Construct a new JsonFloatingNumber instance by parsing the data as List value.