RelationExpandable.fromJson constructor
Implementation
factory RelationExpandable.fromJson(Map<String, Object?> json) {
return RelationExpandable(
relationData: json[r'relationData'] as String?,
source: json[r'source'] as String?,
target: json[r'target'] as String?,
);
}