我知道如何在构造函数中初始化其他变量,例如int或String,但我不知道如何对List和Map进行初始化。
class StackOverFlowQuestion{
StackOverFlowQuestion({this.test='', this.map=?, this.list=?});
String test;
Map map;
List list;
}
我用什么替换问号?
谢谢。
答案 0 :(得分:5)
答案取决于您的默认列表和映射是否恒定。假设您的列表是,但地图不是。
您会写:
class StackOverFlowQuestion {
StackOverFlowQuestion({
this.test = '',
Map map,
this.list = const [1, 2, 3],
}) {
this.map = map ?? {};
}
String test;
Map map;
List list;
}
如果省略了list可选参数,则它将初始化为[1, 2, 3]
。如果地图被省略或为null,则会使用可变的空地图进行初始化。