CelmReferenceRef.fromJson constructor
Implementation
factory CelmReferenceRef.fromJson(Map<String, dynamic> json) =>
CelmReferenceRef(
id: _requireString(json, 'CelmReferenceRef', 'id'),
field: _requireString(json, 'CelmReferenceRef', 'field'),
expected: (json['expected'] as Map<String, dynamic>?) ?? const {},
);