FlashyFlushbarProvider constructor

const FlashyFlushbarProvider({
  1. Key? key,
  2. Widget? child,
})

Constructs a FlashyFlushbarProvider with an optional child widget.

The key parameter is inherited from the StatefulWidget class.

The child parameter is an optional widget that will be wrapped by the FlashyFlushbarProvider. If no child is provided, it defaults to an empty SizedBox.

Implementation

const FlashyFlushbarProvider({super.key, this.child});