SingleSelectDialog constructor

const SingleSelectDialog({
  1. Key? key,
  2. List? data,
  3. dynamic onSelectedChanged(
    1. String
    )?,
})

Implementation

const SingleSelectDialog({
  super.key,
  //required this.text,
  //this.controller,
  this.data,
  this.onSelectedChanged,
  //this.onDonePressed
});