GroupLabel.fromJson constructor
Implementation
factory GroupLabel.fromJson(Map<String, Object?> json) {
return GroupLabel(
text: json[r'text'] as String?,
title: json[r'title'] as String?,
type: json[r'type'] != null
? GroupLabelType.fromValue(json[r'type']! as String)
: null,
);
}