Load items from JSON
void loadFromJson(List<Map<String, dynamic>> jsonList) { _items = jsonList.map((json) => CheckItem.fromJson(json)).toList(); notifyListeners(); }