You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
350 B
Dart

import 'package:package_info_plus/package_info_plus.dart';
typedef VoidFutureCallback = Future<void> Function();
typedef BoolFutureCallback = Future<bool> Function();
class Global {
static String isekaiWikiHomeUrl = "https://www.isekai.cn/";
static PackageInfo? packageInfo;
static String wikiLang = "zh-cn";
static String? webOrigin;
}