fromJson static method
Returns a new SecretKeysResponseAllOf instance and imports
Implementation
// ignore: prefer_constructors_over_static_methods
static SecretKeysResponseAllOf fromJson(dynamic value) {
final json = value.cast<String, dynamic>();
return SecretKeysResponseAllOf(
links: json[r'links'] == null
? null
: SecretKeysResponseAllOfLinks.fromJson(json[r'links']),
);
}