Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- 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);
- }
- }
|