TF-2901 Implement caching composer on log out

This commit is contained in:
DatDang
2024-06-18 15:24:02 +07:00
committed by Dat H. Pham
parent c4bffd6626
commit b2c92388f2
18 changed files with 507 additions and 185 deletions
@@ -9,6 +9,13 @@ class NotFoundInWebSessionException with EquatableMixin implements Exception {
List<Object> get props => [];
}
class NotMatchInWebSessionException with EquatableMixin implements Exception {
const NotMatchInWebSessionException();
@override
List<Object> get props => [];
}
class SaveToWebSessionFailException with EquatableMixin implements Exception {
final String? errorMessage;