QueryList.fromJson constructor

QueryList.fromJson(
  1. Map json_
)

Implementation

QueryList.fromJson(core.Map json_)
    : this(
        queries: json_.containsKey('queries')
            ? (json_['queries'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );