feat: add sendDtmf method to send DTMF tones during a call

This commit is contained in:
Andrew 2026-03-30 09:28:40 +07:00
parent b95baa6799
commit f64284f963
9 changed files with 84 additions and 1 deletions

View file

@ -70,4 +70,7 @@ class LiblinphoneFlutter {
Future<void> syncCurrentState() async =>
LiblinphoneFlutterPlatform.instance.syncCurrentState();
Future<bool> sendDtmf(String tone) async =>
LiblinphoneFlutterPlatform.instance.sendDtmf(tone);
}