FooterToolsWidget constructor

const FooterToolsWidget({
  1. Key? key,
  2. required AsyncCallback onDone,
  3. Widget? doneButtonChild,
  4. 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,
});