AudioBox constructor

const AudioBox({
  1. Key? key,
  2. int audioTimelength = 0,
  3. bool audioPlayStatus = false,
})

Implementation

const AudioBox({
  super.key,
  this.audioTimelength = 0,
  this.audioPlayStatus = false,
});