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