build method
The method uses the ListViewComponent.builder method to actually build the Widget.
data
Must not be null.
Used by SelectionMenu.
Implementation
Widget build(ListViewComponentData data) {
assert(builder != null, ComponentAssertionMessages.nullBuilderMethod);
return builder!(data);
}