v1DeleteWalletsIntent.fromJson constructor

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

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