如果_contact不为null,我想在文本字段上放置一个默认值.去做这个
new TextField( decoration: new InputDecoration(labelText: "Email"),maxLines: 1,controller: new TextEditingController(text: (_contact != null) ? _contact.email: ""))
解决方法
飞镖附带?和??运算符用于空检查.
您可以执行以下操作:
var result = _contact?.email ?? ""
你也可以
if (t?.creationDate?.millisecond != null) { ... }
在JS中等于:
if (t && t.creationDate && t.creationDate.millisecond) { ... }