toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (expression != null) 'expression': expression!,
      if (limit != null) 'limit': limit!,
      if (offset != null) 'offset': offset!,
      if (order != null) 'order': order!,
      if (returnUserInfo != null) 'returnUserInfo': returnUserInfo!,
      if (sortBy != null) 'sortBy': sortBy!,
      if (tenantId != null) 'tenantId': tenantId!,
    };