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