sendDtmf method

Future<void> sendDtmf(
  1. int callId,
  2. String tones,
  3. int durationMs,
  4. int intertoneGapMs, [
  5. int method = kDtmfMethodRtp,
])

Send DTMF tone to remote side of the specified call

Implementation

Future<void> sendDtmf(
  int callId,
  String tones,
  int durationMs,
  int intertoneGapMs, [
  int method = kDtmfMethodRtp,
]) {
  return _platform.sendDtmf(
    callId,
    tones,
    durationMs,
    intertoneGapMs,
    method,
  );
}