buildAudioPlayer method
Build the audio player.
Implementation
Widget buildAudioPlayer() {
return SizedBox(
height: 48,
child: Row(
children: [
buildPlayButton(),
buildDurationAndPosition(),
buildSlider(),
],
),
);
}