The getter title isnt defined for the type "TextTheme"

Viewed 552

I just upgraded to flutter v2. I am getting the following error

title: Text("Foo", style: Theme
                            .of(context)
                            .textTheme
                            .title
                            .copyWith(fontWeight: FontWeight.bold, color: Colors.red),)),

Any suggestions on what the equivalent will be ?

1 Answers
Related