fix: remove miss-put tone parameter from stopCallService method

This commit is contained in:
Andrew 2026-04-09 12:32:18 +07:00
parent ab5df9fd28
commit 7a0209e33a

View file

@ -88,6 +88,6 @@ class LiblinphoneFlutter {
Future<bool> sendDtmf(String tone) async => Future<bool> sendDtmf(String tone) async =>
LiblinphoneFlutterPlatform.instance.sendDtmf(tone); LiblinphoneFlutterPlatform.instance.sendDtmf(tone);
Future<bool> stopCallService(String tone) async => Future<bool> stopCallService() async =>
LiblinphoneFlutterPlatform.instance.stopCallService(); LiblinphoneFlutterPlatform.instance.stopCallService();
} }