Implement Asia/Manila Time Zone

Handled saving of Relievers
This commit is contained in:
2026-02-11 20:12:48 +08:00
parent 747edbdd8c
commit 678a73a696
20 changed files with 551 additions and 168 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
import '../utils/app_time.dart';
class TicketMessage {
TicketMessage({
required this.id,
@@ -22,7 +24,7 @@ class TicketMessage {
taskId: map['task_id'] as String?,
senderId: map['sender_id'] as String?,
content: map['content'] as String? ?? '',
createdAt: DateTime.parse(map['created_at'] as String),
createdAt: AppTime.parse(map['created_at'] as String),
);
}
}