void update({String? title, Widget? child}) { Widget? w = child ?? title?.text(); if (w != null) { this.child = w; } updateState(); }