TF-3719 Add handle export log to device if need

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-05-16 20:16:11 +07:00
committed by Dat H. Pham
parent a891e07887
commit 0ca3ca170d
20 changed files with 541 additions and 6 deletions
@@ -0,0 +1,15 @@
import 'package:equatable/equatable.dart';
abstract class PermissionException with EquatableMixin implements Exception {
final String? message;
const PermissionException({this.message});
}
class NotGrantedPermissionStorageException extends PermissionException {
const NotGrantedPermissionStorageException() : super(message: 'Permission Storage has not been granted access');
@override
List<Object?> get props => [super.message];
}