listFromJson static method
Implementation
static List<Query?>? listFromJson(
List<dynamic> json, {
bool? emptyIsNull,
bool? growable,
}) =>
json.isEmpty
? true == emptyIsNull
? null
: <Query>[]
: json
.map((dynamic value) => Query.fromJson(value))
.toList(growable: true == growable);