sendDtmf method

Future<void> sendDtmf({
  1. required String sequence,
})

Send DTMF digits sequence sequence the sequence of the DTMF digits

Implementation

Future<void> sendDtmf({required String sequence}) async {
  CallPlatform.instance.sendDtmf(sequence: sequence, callId: id ?? "");
}