toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endAt = this.endAt;
final findNearest = this.findNearest;
final from = this.from;
final limit = this.limit;
final offset = this.offset;
final orderBy = this.orderBy;
final select = this.select;
final startAt = this.startAt;
final where = this.where;
return {
'endAt': ?endAt,
'findNearest': ?findNearest,
'from': ?from,
'limit': ?limit,
'offset': ?offset,
'orderBy': ?orderBy,
'select': ?select,
'startAt': ?startAt,
'where': ?where,
};
}