toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final datasets = this.datasets;
  final etag = this.etag;
  final kind = this.kind;
  final nextPageToken = this.nextPageToken;
  final unreachable = this.unreachable;
  return {
    'datasets': ?datasets,
    'etag': ?etag,
    'kind': ?kind,
    'nextPageToken': ?nextPageToken,
    'unreachable': ?unreachable,
  };
}