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