CancelOKTextInputAlertView constructor

CancelOKTextInputAlertView({
  1. Key? key,
  2. double? heiht,
  3. String? title,
  4. String? placeholder,
  5. String? inputText,
  6. String cancelTitle = '取消',
  7. Function? cancelHandle,
  8. String okTitle = '确认',
  9. Function? okHandle,
})

Implementation

CancelOKTextInputAlertView({
  Key? key,
  this.heiht,
  this.title,
  this.placeholder,
  this.inputText,
  this.cancelTitle = '取消',
  this.cancelHandle,
  this.okTitle = '确认',
  this.okHandle,
});