NumberKeyboard constructor

NumberKeyboard({
  1. String? value = "",
  2. String? title,
  3. int? maxlength,
  4. String? extraKey,
  5. String? closeButtomText,
  6. String deleteButtonText = "删除",
  7. bool showDeleteKey = true,
  8. dynamic onChange(
    1. String val
    )?,
  9. dynamic onSubmitted(
    1. String val
    )?,
  10. dynamic onClose()?,
})

Implementation

NumberKeyboard(
    {this.value: "",
    this.title,
    this.maxlength,
    this.extraKey,
    this.closeButtomText,
    this.deleteButtonText: "删除",
    this.showDeleteKey: true,
    this.onChange,
    this.onSubmitted,
    this.onClose
    // this.hideOnClickOutside: true,
    });