跳转至

Dart 条件判断

约 5 个字 8 行代码 预计阅读时间不到 1 分钟

1
2
3
if(condition) {
    // process if condition == true
}
1
2
3
4
5
if(condition) {
    // process if condition == true
} else {
    // process if condition == false
}