currentAudioPath property

String? currentAudioPath

Implementation

String? get currentAudioPath => _currentAudioPath;
void currentAudioPath=(String? p)

Implementation

set currentAudioPath(String? p) {
  if (p == _currentAudioPath) return;
  _currentAudioPath = p;
  updateWith('audio');
}