Error: The getter 'accentColor' isn't defined for the class 'ThemeData'.
../…/src/numberpicker.dart:200
- 'ThemeData' is from 'package:flutter/src/material/theme_data.dart' ('/opt/flutter/packages/flutter/lib/src/material/theme_data.dart').
package:flutter/…/material/theme_data.dart:1
Try correcting the name to the name of an existing getter, or defining a getter or field named 'accentColor'.
themeData.textTheme.headline5?.copyWith(color: themeData.accentColor);
How do I run past this to get my app to debug
From the
ThemeDatamigration guide, the closest replacement for this property isTheme.of(context).colorScheme.secondary;.