build method

Widget build(
  1. SearchingIndicatorComponentData data
)

The method uses the SearchingIndicatorComponent.builder method to actually build the Widget.

data Must not be null.

Used by ListViewMenu.

Implementation

Widget build(SearchingIndicatorComponentData data) {
  assert(builder != null, ComponentAssertionMessages.nullBuilderMethod);
  return builder!(data);
}