fromJson static method

AuthorizationAllOfLinks fromJson(
  1. dynamic value
)

Returns a new AuthorizationAllOfLinks instance and imports

Implementation

// ignore: prefer_constructors_over_static_methods
static AuthorizationAllOfLinks fromJson(dynamic value) {
  final json = value.cast<String, dynamic>();
  return AuthorizationAllOfLinks(
    self: mapValueOfType<String>(json, r'self'),
    user: mapValueOfType<String>(json, r'user'),
  );
}