getGroupNotifier method
Implementation
@override
ValueNotifier<bool> getGroupNotifier(String? groupId) {
if (groupId == null) return ValueNotifier<bool>(false);
return _getNotifier(groupId);
}
@override
ValueNotifier<bool> getGroupNotifier(String? groupId) {
if (groupId == null) return ValueNotifier<bool>(false);
return _getNotifier(groupId);
}