web_url.dart 806 B

12345678910111213141516171819202122232425262728
  1. import 'dart:io';
  2. import 'package:location/data/repositories/account_repository.dart';
  3. class WebUrl {
  4. WebUrl._();
  5. static const String _privacyPolicy =
  6. "https://doc.v8dashen.com/doc/0ae81e24392fe602";
  7. static const String _privacyPolicyIos = "";
  8. static const String _userAgreement =
  9. "https://doc.v8dashen.com/doc/0cd9ef72cd994b13";
  10. static const String _userAgreementIos = "";
  11. static const String _shareUrl = "https://ssdw.myaskai.cn/#/";
  12. static String renewalAgreement =
  13. Platform.isIOS ? "https://doc.v8dashen.com/doc/4e69dec06586d0f1" : '';
  14. static String get privacyPolicy => Platform.isIOS? _privacyPolicyIos : _privacyPolicy;
  15. static String get userAgreement => Platform.isIOS? _userAgreementIos : _userAgreement;
  16. static String get shareUrl => _shareUrl;
  17. }