Edge.fromJson constructor

Edge.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Edge.fromJson(Map<String, dynamic> json) {
  return Edge(
    destinationId: json['DestinationId'] as String?,
    sourceId: json['SourceId'] as String?,
  );
}