CloseContainerBuilder typedef

CloseContainerBuilder = Widget Function(BuildContext context, VoidCallback action)

Signature for a function that creates a Widget in closed state within an OpenContainer.

The action callback provided to OpenContainer.closedBuilder can be used to open the container.

Implementation

typedef CloseContainerBuilder = Widget Function(
  BuildContext context,
  VoidCallback action,
);