toJson method

Map<String, Object?> toJson()

Encodes this value as a JSON object.

Implementation

Map<String, Object?> toJson() => <String, Object?>{
  'source': source.toJson(),
  'blob': blob.toJson(),
  'recordCount': recordCount,
  'truncated': truncated,
  'truncation': truncation == null ? null : truncation!.toJson(),
};