Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-28 10:12:15 +02:00
parent 77987258aa
commit c49964e5c5
6 changed files with 147 additions and 10 deletions

View File

@@ -42,7 +42,7 @@ class SessionState extends Equatable {
User? user,
CompanyModel? company,
StoreModel? currentStore,
StaffMemberModel? currentStaff,
StaffMemberModel? currentStaffMember,
OnboardingStep? onboardingStep,
bool? isMobileDevice,
}) {
@@ -51,7 +51,7 @@ class SessionState extends Equatable {
user: user ?? this.user,
company: company ?? this.company,
currentStore: currentStore ?? this.currentStore,
currentStaffMember: currentStaff ?? this.currentStaffMember,
currentStaffMember: currentStaffMember ?? this.currentStaffMember,
onboardingStep: onboardingStep ?? this.onboardingStep,
isMobileDevice: isMobileDevice ?? this.isMobileDevice,
);