fromJson static method

SecretKeysResponseAllOfLinks fromJson(
  1. dynamic value
)

Returns a new SecretKeysResponseAllOfLinks instance and imports

Implementation

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