| 12345678910111213141516171819202122232425262728 |
- import 'dart:io';
- import 'package:location/data/repositories/account_repository.dart';
- class WebUrl {
- WebUrl._();
- static const String _privacyPolicy =
- "https://doc.v8dashen.com/doc/0ae81e24392fe602";
- static const String _privacyPolicyIos = "";
- static const String _userAgreement =
- "https://doc.v8dashen.com/doc/0cd9ef72cd994b13";
- static const String _userAgreementIos = "";
- static const String _shareUrl = "https://ssdw.myaskai.cn/#/";
- static String renewalAgreement =
- Platform.isIOS ? "https://doc.v8dashen.com/doc/4e69dec06586d0f1" : '';
- static String get privacyPolicy => Platform.isIOS? _privacyPolicyIos : _privacyPolicy;
- static String get userAgreement => Platform.isIOS? _userAgreementIos : _userAgreement;
- static String get shareUrl => _shareUrl;
- }
|