QueryList.fromJson constructor

QueryList.fromJson(
  1. Map json_
)

Implementation

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