CDKButtonsUpDown constructor

const CDKButtonsUpDown({
  1. Key? key,
  2. bool enabledUp = true,
  3. bool enabledDown = true,
  4. VoidCallback? onUpPressed,
  5. VoidCallback? onDownPressed,
})

Implementation

const CDKButtonsUpDown({
  Key? key,
  this.enabledUp = true,
  this.enabledDown = true,
  this.onUpPressed,
  this.onDownPressed,
}) : super(key: key);