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