toJson method

Map<String, dynamic> toJson()

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,
  };
}