soundTouchType property

SoundTouchType get soundTouchType

Implementation

SoundTouchType get soundTouchType => _soundTouchType;
set soundTouchType (SoundTouchType value)

Implementation

set soundTouchType(SoundTouchType value) {
  if (value != _soundTouchType) {
    _soundTouchType = value;
    if (changeCallback != null)
      changeCallback!(userData, _videoStatus, _voiceStatus, _recordStatus,
          _soundTouchType);
  }
}