toJson method
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(),
};