toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final expression = this.expression;
  final limit = this.limit;
  final offset = this.offset;
  final order = this.order;
  final returnUserInfo = this.returnUserInfo;
  final sortBy = this.sortBy;
  final tenantId = this.tenantId;
  return {
    'expression': ?expression,
    'limit': ?limit,
    'offset': ?offset,
    'order': ?order,
    'returnUserInfo': ?returnUserInfo,
    'sortBy': ?sortBy,
    'tenantId': ?tenantId,
  };
}