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