ReferenceV1.fromJson constructor

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

Implementation

factory ReferenceV1.fromJson(Map<String, dynamic> json) {
  return ReferenceV1(id: json['id'], type: json['type'], name: json['name']);
}