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