toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final sources = this.sources;
final targets = this.targets;
final totalExfiltratedBytes = this.totalExfiltratedBytes;
return {
'sources': ?sources,
'targets': ?targets,
'totalExfiltratedBytes': ?totalExfiltratedBytes,
};
}