Changes from dart fix --apply

This commit is contained in:
Kyle H 2023-09-29 22:45:50 -04:00
parent c9653bab18
commit d5a03f57d5
10 changed files with 193 additions and 10 deletions

View file

@ -23,6 +23,11 @@ class BackgroundTicker extends ConsumerStatefulWidget {
@override
BackgroundTickerState createState() => BackgroundTickerState();
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties.add(ObjectFlagProperty<Widget Function(BuildContext p1)>.has('builder', builder));
}
}
class BackgroundTickerState extends ConsumerState<BackgroundTicker> {