ActionButtonsSection constructor

const ActionButtonsSection({
  1. required bool isLoading,
  2. required bool showError,
  3. required bool showEmpty,
  4. required VoidCallback onToggleLoading,
  5. required VoidCallback onToggleError,
  6. required VoidCallback onToggleEmpty,
  7. Key? key,
})

Creates an ActionButtonsSection.

Implementation

const ActionButtonsSection({
  required this.isLoading,
  required this.showError,
  required this.showEmpty,
  required this.onToggleLoading,
  required this.onToggleError,
  required this.onToggleEmpty,
  super.key,
});