fromJson static method

Label fromJson(
  1. dynamic value
)

Returns a new Label instance and imports

Implementation

// ignore: prefer_constructors_over_static_methods
static Label fromJson(dynamic value) {
  final json = value.cast<String, dynamic>();
  return Label(
    id: mapValueOfType<String>(json, r'id'),
    orgID: mapValueOfType<String>(json, r'orgID'),
    name: mapValueOfType<String>(json, r'name'),
    properties: mapCastOfType<String, String>(json, r'properties'),
  );
}