array<T> method
Get List with child T
by String key.
Throws SquintException if key is not found.
Implementation
List<T> array<T>(
String key, {
T Function(JsonObject)? decodeFromJsonObject,
Function? decoder,
List? childType,
}) =>
arrayNode<T>(key,
decodeFromJsonObject: decodeFromJsonObject,
decoder: decoder,
childType: childType)
.data;