add auth, format

This commit is contained in:
Phuoc Nguyen
2025-11-07 11:52:06 +07:00
parent 24a8508fce
commit 3803bd26e0
173 changed files with 8505 additions and 7116 deletions

View File

@@ -145,13 +145,7 @@ class Showroom {
@override
int get hashCode {
return Object.hash(
showroomId,
title,
style,
isFeatured,
isActive,
);
return Object.hash(showroomId, title, style, isFeatured, isActive);
}
@override

View File

@@ -50,11 +50,7 @@ class ShowroomProduct {
@override
int get hashCode {
return Object.hash(
showroomId,
productId,
quantityUsed,
);
return Object.hash(showroomId, productId, quantityUsed);
}
@override