fix flickering image. (#343)

This commit is contained in:
Jojo Feng
2023-12-07 23:24:43 -08:00
committed by GitHub
parent 835ed7e841
commit cb90751330
8 changed files with 71 additions and 21 deletions

View File

@ -0,0 +1,15 @@
typedef AppExceptionHandler = void Function(AppException);
class AppException implements Exception {
AppException({
required this.message,
this.stackTrace,
});
final String message;
final StackTrace? stackTrace;
}
class RateLimitedException extends AppException {
RateLimitedException() : super(message: 'Rate limited...');
}