web_url.dart 632 B

1234567891011121314151617181920212223
  1. class WebUrl {
  2. WebUrl._();
  3. static const String _privacyPolicy =
  4. "https://doc.v8dashen.com/doc/bad49f15215daa70";
  5. static const String _privacyPolicyIos =
  6. "https://doc.v8dashen.com/doc/7aed0a2b23a10f44";
  7. static const String _userAgreement =
  8. "https://doc.v8dashen.com/doc/546b8b5175a1b4db";
  9. static const String _userAgreementIos =
  10. "https://doc.v8dashen.com/doc/9ac4289f64ac276a";
  11. static const String _shareUrl = "https://www.v8dashen.com";
  12. static String get privacyPolicy => _privacyPolicy;
  13. static String get userAgreement => _userAgreement;
  14. static String get shareUrl => _shareUrl;
  15. }