web_url.dart 494 B

123456789101112131415161718
  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 String get privacyPolicy => _privacyPolicy;
  10. static String get privacyPolicyIos => _privacyPolicyIos;
  11. static String get userAgreement => _userAgreement;
  12. }