TF-3985 Navigate Paywall url when click Increase your space button

This commit is contained in:
dab246
2025-09-09 15:33:50 +07:00
committed by Dat H. Pham
parent c3ee166c00
commit f373cd3d37
22 changed files with 463 additions and 5 deletions
@@ -1,2 +1,4 @@
class NotFoundLinagoraEcosystem implements Exception {}
class NotFoundLinagoraEcosystem implements Exception {}
class NotFoundPaywallUrl implements Exception {}
@@ -27,6 +27,7 @@ class LinagoraEcosystemConverter {
LinagoraEcosystemIdentifier.twakeSync: AppLinagoraEcosystem.deserialize,
LinagoraEcosystemIdentifier.linShare: AppLinagoraEcosystem.deserialize,
LinagoraEcosystemIdentifier.mobileApps: MobileAppsLinagoraEcosystemConverter.deserialize,
LinagoraEcosystemIdentifier.paywallURL: ApiUrlLinagoraEcosystem.deserialize,
});
}
@@ -11,6 +11,7 @@ class LinagoraEcosystemIdentifier with EquatableMixin {
static final twakeChat = LinagoraEcosystemIdentifier('Twake Chat');
static final twakeSync = LinagoraEcosystemIdentifier('Twake Sync');
static final linShare = LinagoraEcosystemIdentifier('LinShare');
static final paywallURL = LinagoraEcosystemIdentifier('paywallUrlTemplate');
final String value;