AlertdCancelOKSpacedButtons constructor

AlertdCancelOKSpacedButtons({
  1. Key? key,
  2. double? height,
  3. String cancelTitle = '取消',
  4. required void cancelHandle(),
  5. String okTitle = '确认',
  6. required void okHandle(),
})

Implementation

AlertdCancelOKSpacedButtons({
  Key? key,
  this.height,
  this.cancelTitle = '取消',
  required this.cancelHandle,
  this.okTitle = '确认',
  required this.okHandle,
}) : super(key: key);