callTimingDelay property
Get call timing delay in ms
Implementation
static int get callTimingDelay {
final OperationResult result = staticMethod(
'SoundService',
'getCallTimingDelay',
);
return result['result'];
}
Set call timing delay in ms
Only relevant when the audio is played as BT phone call
Implementation
static set callTimingDelay(int delay) {
staticMethod('SoundService', 'setCallTimingDelay', args: delay);
}