RadioWidget constructor

const RadioWidget({
  1. Key? key,
  2. required MyRadio radio,
  3. dynamic onStart(
    1. RadioPlayer
    )?,
  4. dynamic onStop(
    1. RadioPlayer
    )?,
  5. Future<void> beforeStart(
    1. RadioPlayer
    )?,
  6. bool hideIcon = false,
  7. TextEditingController? editController,
})

Implementation

const RadioWidget({
  super.key,
  required this.radio,
  this.onStart,
  this.onStop,
  this.beforeStart,
  this.hideIcon = false,
  this.editController,
});