toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'type': type.toJson(),
    if (value != null) 'value': value,
    if (relatedNodes != null)
      'relatedNodes': relatedNodes!.map((e) => e.toJson()).toList(),
    if (sources != null) 'sources': sources!.map((e) => e.toJson()).toList(),
  };
}