v1DisablePrivateKeyIntent.fromJson constructor
Implementation
factory v1DisablePrivateKeyIntent.fromJson(Map<String, dynamic> json) {
final _privateKeyId = json['privateKeyId'] as String;
return v1DisablePrivateKeyIntent(
privateKeyId: _privateKeyId,
);
}