TF-3719 Add handle export log to device if need
Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user