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

@@ -150,8 +150,7 @@ class DesignRequest {
bool get hasAttachments => attachments.isNotEmpty;
/// Check if design is ready
bool get hasDesign =>
finalDesignLink != null && finalDesignLink!.isNotEmpty;
bool get hasDesign => finalDesignLink != null && finalDesignLink!.isNotEmpty;
/// Check if user has provided feedback
bool get hasFeedback => feedback != null || rating != null;
@@ -231,13 +230,7 @@ class DesignRequest {
@override
int get hashCode {
return Object.hash(
requestId,
userId,
projectName,
area,
status,
);
return Object.hash(requestId, userId, projectName, area, status);
}
@override