setTitle(String? title, {notify = true, bool allowNull = false}) { if (!allowNull && title.e || title == _title) { return; } _title = title ?? ""; if (notify) { notifyListeners(); } }