FooterToolsWidget constructor

const FooterToolsWidget({
  1. Key? key,
  2. required AsyncCallback onDone,
  3. Widget? doneButtonChild,
  4. bool isLoading = false,
  5. Widget doneButtonBuilder(
    1. StoryMakerTheme theme,
    2. AsyncCallback onDone,
    3. bool isLoading
    )?,
})

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,
  this.doneButtonBuilder,
});