LabelComponents.fromJson constructor

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

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