QueryInfo.fromJson constructor

QueryInfo.fromJson(
  1. Map _json
)

Implementation

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