TextEntryDialog constructor

const TextEntryDialog({
  1. Key? key,
  2. String? title,
  3. ThemeGroupType titleType = ThemeGroupType.POM,
  4. String? description,
  5. ThemeGroupType descriptionType = ThemeGroupType.MOM,
  6. String? hintText,
  7. String cancelButtonText = "Cancel",
  8. String okButtonText = "Ok",
})

Implementation

const TextEntryDialog({
  super.key,
  this.title,
  this.titleType = ThemeGroupType.POM,
  this.description,
  this.descriptionType = ThemeGroupType.MOM,
  this.hintText,
  this.cancelButtonText = "Cancel",
  this.okButtonText = "Ok"
});