ConfirmDenyButtons constructor

const ConfirmDenyButtons({
  1. Key? key,
  2. @required Function? deny,
  3. double? screenHeight,
  4. double? screenWidth,
  5. @required Function? confirm,
  6. String denyText = '',
  7. String confirmText = '',
})

Implementation

const ConfirmDenyButtons({
  Key? key,
  @required this.deny,
  this.screenHeight,
  this.screenWidth,
  @required this.confirm,
  this.denyText = '',
  this.confirmText = '',
}) : super(key: key);