Add Wallet Argument Object

This commit is contained in:
2025-04-17 13:08:10 +02:00
parent 7739b63f36
commit 35e10df927

View File

@@ -197,3 +197,13 @@ class PatManagerArguments {
this.businessUser,
);
}
class WalletArguments {
final AppUser signedInUser;
final int index;
WalletArguments(
this.signedInUser,
this.index,
);
}