v1DeletePrivateKeysIntent.fromJson constructor
Implementation
factory v1DeletePrivateKeysIntent.fromJson(Map<String, dynamic> json) {
final _privateKeyIds = (json['privateKeyIds'] as List).map((e) => e as String).toList();
final _deleteWithoutExport = json['deleteWithoutExport'] as bool?;
return v1DeletePrivateKeysIntent(
privateKeyIds: _privateKeyIds,
deleteWithoutExport: _deleteWithoutExport,
);
}