BuildFooter constructor

const BuildFooter({
  1. Key? key,
  2. void confirmActionOnPressed()?,
  3. void cancelActionOnPressed()?,
  4. EdgeInsetsGeometry? padding,
  5. required String confirmActionText,
  6. required String cancelActionText,
})

Implementation

const BuildFooter({
  super.key,
  this.confirmActionOnPressed,
  this.cancelActionOnPressed,
  this.padding,
  required this.confirmActionText,
  required this.cancelActionText,
});