AlertCancelOKCloseButtons constructor

AlertCancelOKCloseButtons({
  1. Key? key,
  2. String cancelTitle = '取消',
  3. Function? cancelHandle,
  4. String okTitle = '确认',
  5. Function? okHandle,
})

Implementation

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