You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- typedef Future InitMethod();
-
- class Application {
- // 初始化方法
- static List<InitMethod> _initMethods = List();
-
- static Future init() async {
- for (InitMethod method in _initMethods) {
- await method();
- }
-
- return Future.delayed(Duration.zero);
- }
-
- static addMethod(InitMethod method) {
- _initMethods.add(method);
- }
- }
|