v1DisablePrivateKeyIntent.fromJson constructor

v1DisablePrivateKeyIntent.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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