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