web_url.dart 601 B

12345678910111213141516171819202122
  1. class WebUrl {
  2. WebUrl._();
  3. static const String _privacyPolicy =
  4. "https://doc.v8dashen.com/doc/298eb75d38dc2c4a";
  5. static const String _privacyPolicyIos =
  6. "https://cdn.v8dashen.com/static/xt-xm-i-privacy.html";
  7. static const String _userAgreement =
  8. "https://doc.v8dashen.com/doc/417838a4f155ec74";
  9. static const String _shareUrl = "https://www.v8dashen.com";
  10. static String get privacyPolicy => _privacyPolicy;
  11. static String get privacyPolicyIos => _privacyPolicyIos;
  12. static String get userAgreement => _userAgreement;
  13. static String get shareUrl => _shareUrl;
  14. }