build method

Widget build(
  1. AnimationComponentData data
)

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

data Must not be null.

Used by SelectionMenu.

Implementation

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