SpecificityComponent.fromJson constructor
Implementation
factory SpecificityComponent.fromJson(Map<String, dynamic> json) {
return SpecificityComponent(
text: json['text'] as String,
a: json['a'] as int,
b: json['b'] as int,
c: json['c'] as int,
);
}