工厂构造 Factory constructor class Singleton{Singleton._privateConstructor(){//todo 私有构造方法}static final Singleton _instance = Singleton._privateConstructor();factory Singleton(){return _instance;}}void m
在调用List.first 时报出该异常 看一下List 中get first方法的源码: /*** Returns the first element.** Throws a [StateError] if `this` is empty.* Otherwise returns the first element in the iteration order,* equivalent to
变量 var 可声明任何类型的变量,但首次赋值后类型即确定dynamic 可声明任何类型的变量,且可以在后期改变类型。Object 是Dart所有对象的根基类,但只能使用Object的属性与方法,比如:Object定义为string,但想访问只能自己设定get方法 Object x = "hi world";// The getter 'length' is not defined for