build method

Widget build(
  1. TriggerComponentData data
)

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

data Must not be null.

Used by SelectionMenu.

Implementation

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