web_url.dart 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. class WebUrl {
  2. WebUrl._();
  3. // 隐私政策
  4. static const String _privacyPolicy =
  5. "https://doc.v8dashen.com/doc/88b8e528ec1c9652";
  6. // 服务条款
  7. static const String _serviceAgreement =
  8. "https://doc.v8dashen.com/doc/cd0c14d2db602927";
  9. // 儿童保护声明
  10. static const String _kidPolicy =
  11. "https://doc.v8dashen.com/doc/db9a720e3455850e";
  12. // 个人信息保护指引
  13. static const String _personalInformationList =
  14. "https://doc.v8dashen.com/doc/c463429ebb833508";
  15. // 会员服务协议
  16. static const String _memberServiceAgreement =
  17. "https://doc.v8dashen.com/doc/188d18732e6611e8";
  18. // 第三方SDK共享清单
  19. static const String _thirdPartyList =
  20. "https://doc.v8dashen.com/doc/35b71c0368d01923";
  21. // 会员服务协议
  22. static const String _subscribeAgreement = "https://doc.v8dashen.com/doc/e689ca2786339982";
  23. static const String _qiyuService ="https://qiyu-kefu.atmob.com";
  24. static String get privacyPolicy => _privacyPolicy;
  25. static String get kidPolicy => _kidPolicy;
  26. static String get serviceAgreement => _serviceAgreement;
  27. static String get thirdPartyList => _thirdPartyList;
  28. static String get subscribeAgreement => _subscribeAgreement;
  29. static String get personalInformationList => _personalInformationList;
  30. static String get qiyuService => _qiyuService;
  31. static String get memberServiceAgreement => _memberServiceAgreement;
  32. }