v1DeletePrivateKeysIntent.fromJson constructor

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

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,
  );
}