InputCommandDialog constructor

const InputCommandDialog({
  1. Key? key,
  2. required dynamic onConfirm(
    1. String
    ),
  3. double width = 350,
  4. double height = 250,
  5. required dynamic onCancel(),
  6. required TextEditingController commandTextEditor,
  7. required FocusNode focusNode,
})

Implementation

const InputCommandDialog({
  Key? key,
  required this.onConfirm,
  this.width = 350,
  this.height = 250,
  required this.onCancel,
  required this.commandTextEditor,
  required this.focusNode,
}) : super(key: key);