Player constructor

const Player({
  1. Key? key,
  2. String? audioFile,
  3. String? fileName,
})

Implementation

const Player({
  Key? key,
  this.audioFile,
  this.fileName,
}) : super(key: key);