fromJson static method

LabelMapping fromJson(
  1. dynamic value
)

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