toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (sourceEntityId != null) {
    json[r'SourceEntityId'] = sourceEntityId;
  }
  if (sourceEntity != null) {
    json[r'SourceEntity'] = sourceEntity;
  }
  if (matches != null) {
    json[r'Matches'] = matches;
  }
  return json;
}