The index of the child to show, null if nothing is to be displayed.
int? get index => _index;
set index(int? value) { if (_index != value) { _index = value; markNeedsLayout(); } }