chooseChild method
- ChildData? child, {
- bool notify = false,
Implementation
void chooseChild(ChildData? child, {bool notify = false}) {
currentlyChosenChildId = child?.id;
debugPrint('chose child ${child?.title} (id: ${child?.id})');
if (notify) notifyListeners();
}