解決したいこと
Dartを勉強し始めた初心者です。
classを書くときに、以下のようにコーディングしたところ、missing_default_value_for_parameter
エラーが出てて解決する方法がわからず困っています。
dart
1class LIst { 2 final String title; 3 final String description; 4 5 List({ 6 this.title, 7 this.description, 8 }); 9} 10 11final list = [ 12 List( 13 title: 'title1', 14 description: 'description1'), 15 List( 16 title: 'title2', 17 description: 'description2'), 18 List( 19 title: 'title4', 20 description: 'description4'), 21 List( 22 title: 'title4', 23 description: 'description4'), 24];
エラー内容
txt
1The parameter 'title' can't have a value of 'null' because of its type, but the implicit default value is 'null'. 2Try adding either an explicit non-'null' default value or the 'required' modifier.dartmissing_default_value_for_parameter)
あなたの回答
tips
プレビュー