toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (distinctOn != null) 'distinctOn': distinctOn!,
      if (endCursor != null) 'endCursor': endCursor!,
      if (filter != null) 'filter': filter!,
      if (kind != null) 'kind': kind!,
      if (limit != null) 'limit': limit!,
      if (offset != null) 'offset': offset!,
      if (order != null) 'order': order!,
      if (projection != null) 'projection': projection!,
      if (startCursor != null) 'startCursor': startCursor!,
    };