fields method
Specifies the fields to include in the query result.
By default, all the fields are included.
Implementation
QueryRequest<M> fields(List<String> fieldPaths) {
ArgumentError.checkNotNull(fieldPaths, 'field paths');
_fields.addAll(fieldPaths);
return this;
}