TF-831: implement Add a new recipient in forwarding

This commit is contained in:
ManhNTX
2022-08-20 20:45:27 +07:00
committed by Dat H. Pham
parent 04b530a4b9
commit 3c85f1d5ed
29 changed files with 615 additions and 536 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 AddRecipientsInForwardingSuccess extends UIState {
final TMailForward forward;
AddRecipientsInForwardingSuccess(this.forward);
@override
List<Object?> get props => [forward];
}
class AddRecipientsInForwardingFailure extends FeatureFailure {
final dynamic exception;
AddRecipientsInForwardingFailure(this.exception);
@override
List<Object> get props => [exception];
}