FooterToolsWidget constructor
const
FooterToolsWidget({
- Key? key,
- required AsyncCallback onDone,
- Widget? doneButtonChild,
- bool isLoading = false,
Creates an instance of the widget.
The onDone parameter is required and must not be null. The doneButtonChild and isLoading parameters are optional.
Implementation
const FooterToolsWidget({
super.key,
required this.onDone,
this.doneButtonChild,
this.isLoading = false,
});