mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-21 23:06:33 +08:00
4 lines
103 B
Dart
4 lines
103 B
Dart
List<int> a = [1,2,3,4];
|
|
main() {
|
|
print( a.firstWhere((int item) => item == 5 ,orElse: () => null));
|
|
} |