toMap method
Implementation
Map<String, dynamic> toMap() => {
if (fields != null) "fields": fields,
if (sort != null) "sort": sort,
if (offset != null) "offset": offset,
if (limit != null) "limit": limit,
if (selector != null) "selector": selector
};