optionsBuilder property

(Future<void> Function(BuildContext context, List<OptionItem> chewieOptions)?) optionsBuilder
final

Build your own options with default chewieOptions shiped through the builder method. Just add your own options to the Widget you'll build. If you want to hide the chewieOptions, just leave them out from your Widget.

Implementation

final Future<void> Function(
  BuildContext context,
  List<OptionItem> chewieOptions,
)? optionsBuilder;