callTimingDelay property

int get callTimingDelay

Get call timing delay in ms

Implementation

static int get callTimingDelay {
  final OperationResult result = staticMethod(
    'SoundService',
    'getCallTimingDelay',
  );
  return result['result'];
}
set callTimingDelay (int delay)

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);
}