TF-859 Keep local copy in Forwarding

This commit is contained in:
ManhNTX
2022-08-21 10:23:08 +07:00
committed by Dat H. Pham
parent 3c85f1d5ed
commit dc0c3ee445
13 changed files with 228 additions and 32 deletions
@@ -0,0 +1,21 @@
import 'package:core/presentation/state/failure.dart';
import 'package:core/presentation/state/success.dart';
import 'package:forward/forward/tmail_forward.dart';
class EditLocalCopyInForwardingSuccess extends UIState {
final TMailForward forward;
EditLocalCopyInForwardingSuccess(this.forward);
@override
List<Object?> get props => [forward];
}
class EditLocalCopyInForwardingFailure extends FeatureFailure {
final dynamic exception;
EditLocalCopyInForwardingFailure(this.exception);
@override
List<Object> get props => [exception];
}