toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final id = this.id;
  final source = this.source;
  final subject = this.subject;
  final target = this.target;
  return {
    'Id': id,
    'Source': source,
    'Subject': subject,
    'Target': target,
  };
}