toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final distinctOn = this.distinctOn;
  final endCursor = this.endCursor;
  final filter = this.filter;
  final findNearest = this.findNearest;
  final kind = this.kind;
  final limit = this.limit;
  final offset = this.offset;
  final order = this.order;
  final projection = this.projection;
  final startCursor = this.startCursor;
  return {
    'distinctOn': ?distinctOn,
    'endCursor': ?endCursor,
    'filter': ?filter,
    'findNearest': ?findNearest,
    'kind': ?kind,
    'limit': ?limit,
    'offset': ?offset,
    'order': ?order,
    'projection': ?projection,
    'startCursor': ?startCursor,
  };
}