LabelComponents.fromJson constructor
Implementation
factory LabelComponents.fromJson(Map<String, dynamic> json) {
return LabelComponents(
own: json['own'] as String?,
parent: json['parent'] as String?,
section: json['section'] as String?,
displayedLabel: json['displayedLabel'] as String?,
);
}