didAdoptChild method
- RenderBox child
override
Copied from SliverMultiBoxAdaptorElement.didAdoptChild. An assertion was removed to accept the dummy child element.
Implementation
@override
void didAdoptChild(final RenderBox child) {
//""""""""""""""""""""""""""""""""""""""""""""""""""""""
// assert(_currentlyUpdatingChildIndex != null);
//""""""""""""""""""""""""""""""""""""""""""""""""""""""
final childParentData = child.parentData as SliverMultiBoxAdaptorParentData;
childParentData.index = _currentlyUpdatingChildIndex;
}