runAnimation method Null safety
Implementation
runAnimation() async {
while (true) {
notifier.value = !notifier.value;
await Future.delayed(Duration());
}
}
runAnimation() async {
while (true) {
notifier.value = !notifier.value;
await Future.delayed(Duration());
}
}