CustomPagerWithCard constructor

const CustomPagerWithCard({
  1. Key? key,
  2. required int numberPages,
  3. int currentPage = 0,
  4. Function? callback,
  5. Widget? child,
  6. String textTitle = '',
  7. String textSubtitle = '',
  8. String textTrailing = '',
  9. String textTrailingBottom = '',
  10. String textFooterRight = '',
  11. Color? backgroundColor,
  12. Color? textColor,
})

Implementation

const CustomPagerWithCard({
  super.key,
  required this.numberPages,
  this.currentPage = 0,
  this.callback,
  this.child,
  this.textTitle = '',
  this.textSubtitle = '',
  this.textTrailing = '',
  this.textTrailingBottom = '',
  this.textFooterRight = '',
  this.backgroundColor,
  this.textColor,
});