$CallLabelFromJson function
Implementation
CallLabel $CallLabelFromJson(Map<String, dynamic> json) {
final CallLabel callLabel = CallLabel();
final String? name = jsonConvert.convert<String>(json['name']);
if (name != null) {
callLabel.name = name;
}
final String? type = jsonConvert.convert<String>(json['type']);
if (type != null) {
callLabel.type = type;
}
return callLabel;
}