pro pic fix 5
This commit is contained in:
parent
6b7763bf3f
commit
7e66beb1f7
2 changed files with 24 additions and 15 deletions
|
|
@ -16,6 +16,20 @@ class BusinessArguments {
|
|||
);
|
||||
}
|
||||
|
||||
class HomeArguments {
|
||||
final AppUser signedInUser;
|
||||
final BusinessUser? businessUser;
|
||||
final Business? business;
|
||||
final String profilePicUrl;
|
||||
|
||||
HomeArguments(
|
||||
this.signedInUser,
|
||||
this.businessUser,
|
||||
this.business,
|
||||
this.profilePicUrl,
|
||||
);
|
||||
}
|
||||
|
||||
class AppProfileUpdateArguments {
|
||||
final AppUser signedInUser;
|
||||
final ImageProvider<Object>? propicFile;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue