BsPaginationButton constructor

const BsPaginationButton({
  1. Key? key,
  2. bool disabled = false,
  3. bool active = false,
  4. VoidCallback? onPressed,
  5. EdgeInsetsGeometry? margin,
  6. BsPaginationButtonStyle style = const BsPaginationButtonStyle(),
  7. required String label,
})

Implementation

const BsPaginationButton({
  Key? key,
  this.disabled = false,
  this.active = false,
  this.onPressed,
  this.margin,
  this.style = const BsPaginationButtonStyle(),
  required this.label,
}) : super(key: key);