toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
_json['walletAccountIds'] = walletAccountIds;
if (deleteWithoutExport != null) {
_json['deleteWithoutExport'] = deleteWithoutExport;
}
return _json;
}