SkipButtonBuilder typedef

SkipButtonBuilder = Widget Function(BuildContext context, SkipButton skipButton)

A typedef for a function that builds a custom SkipButton widget.

This builder is provided with a BuildContext and a SkipButton instance, allowing for flexible customization of the skip button within different contexts.

Parameters:

  • context: The BuildContext in which the skip button is being built.
  • skipButton: The SkipButton instance that provides properties for the skip button.

Implementation

typedef SkipButtonBuilder = Widget Function(
    BuildContext context, SkipButton skipButton);