fromJson static method

LabelUpdate fromJson(
  1. dynamic value
)

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'),
  );
}