前提・実現したいこと
Dart.dev公式にある配列を扱ったコードをFlutterで実行したいです。
発生している問題・エラーメッセージ
The name of a constructor must match the name of the enclosing class.
該当のソースコード
Dart
1var list = ['apples', 'bananas', 'oranges']; 2list.forEach((item) { 3 print('${list.indexOf(item)}: $item'); 4});
参考:https://dart.dev/guides/language/language-tour#anonymous-functions
試したこと
該当エラーで検索しましたが、該当しているのかわからない記事ばかりでした。
まだFlutterを学び始めなので、大きな見落としがあるような気がしていますがそれがわからず困っています。
どうぞよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。