const constructure

This commit is contained in:
Efril
2026-03-01 20:02:12 +07:00
parent 5058f99fe0
commit e625bd3d2a
142 changed files with 817 additions and 760 deletions
+7 -2
View File
@@ -10,8 +10,13 @@ class ListTable with _$ListTable {
required int totalPages,
}) = _ListTable;
factory ListTable.empty() =>
ListTable(tables: [], totalCount: 0, page: 0, limit: 0, totalPages: 0);
factory ListTable.empty() => const ListTable(
tables: [],
totalCount: 0,
page: 0,
limit: 0,
totalPages: 0,
);
}
@freezed