TF-3985 Navigate Paywall url when click Increase your space button
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
import 'package:tmail_ui_user/features/paywall/domain/model/paywall_url_pattern.dart';
|
||||
|
||||
class GettingPaywallUrl extends LoadingState {}
|
||||
|
||||
class GetPaywallUrlSuccess extends UIState {
|
||||
final PaywallUrlPattern paywallUrlPattern;
|
||||
|
||||
GetPaywallUrlSuccess(this.paywallUrlPattern);
|
||||
|
||||
@override
|
||||
List<Object> get props => [paywallUrlPattern];
|
||||
}
|
||||
|
||||
class GetPaywallUrlFailure extends FeatureFailure {
|
||||
GetPaywallUrlFailure(dynamic exception) : super(exception: exception);
|
||||
}
|
||||
Reference in New Issue
Block a user