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,19 @@
import 'package:core/presentation/state/failure.dart';
import 'package:core/presentation/state/success.dart';
class ExportTraceLogLoading extends LoadingState {}
class ExportTraceLogSuccess extends UIState {
String savePath;
ExportTraceLogSuccess(this.savePath);
@override
List<Object?> get props => [savePath];
}
class ExportTraceLogFailure extends FeatureFailure {
ExportTraceLogFailure(dynamic exception) : super(exception: exception);
}