RelationExpandable.fromJson constructor

RelationExpandable.fromJson(
  1. Map<String, Object?> json
)

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?,
  );
}