InputDialog constructor

const InputDialog({
  1. Key? key,
  2. String cancelText = _defaultCancelText,
  3. String okText = _defaultOkText,
  4. String title = _defaultTitle,
})

Implementation

const InputDialog({
  super.key,
  this.cancelText = _defaultCancelText,
  this.okText = _defaultOkText,
  this.title = _defaultTitle,
});