DialogPrompt constructor

DialogPrompt({
  1. required String title,
  2. Widget? description,
  3. String? placeholder,
  4. String? initialValue,
  5. void onSubmit(
    1. String value
    )?,
  6. CmdCallback? onCancel,
  7. Key? key,
})

Implementation

DialogPrompt({
  required this.title,
  this.description,
  this.placeholder,
  this.initialValue,
  this.onSubmit,
  this.onCancel,
  super.key,
});