Override props method for CacheException

This commit is contained in:
Dat H. Pham
2026-03-09 09:18:00 +07:00
committed by Dat H. Pham
parent 3e39f59f20
commit 236ad5f075
2 changed files with 5 additions and 1 deletions
+3
View File
@@ -14,6 +14,9 @@ abstract class CacheException with EquatableMixin implements Exception {
}
return exceptionName;
}
@override
List<Object?> get props => [message];
}
class UnknownCacheError extends CacheException {