fromJson static method
Returns a new LabelMapping instance and imports
Implementation
// ignore: prefer_constructors_over_static_methods
static LabelMapping fromJson(dynamic value) {
final json = value.cast<String, dynamic>();
return LabelMapping(
labelID: mapValueOfType<String>(json, r'labelID'),
);
}