FacetAttributeReference.fromJson constructor

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

Implementation

factory FacetAttributeReference.fromJson(Map<String, dynamic> json) {
  return FacetAttributeReference(
    targetAttributeName: json['TargetAttributeName'] as String,
    targetFacetName: json['TargetFacetName'] as String,
  );
}