CustomFooter constructor

const CustomFooter({
  1. Key? key,
  2. void onPressed()?,
  3. Color? backgroundColor,
  4. Color? foregroundColor,
  5. IconData? iconData,
  6. String? buttonText,
  7. String? infoText,
})

Implementation

const CustomFooter({
  super.key,
  this.onPressed,
  this.backgroundColor,
  this.foregroundColor,
  this.iconData,
  this.buttonText,
  this.infoText,
});