feat: add custom notification title and message for VoIP calls (also stopCallService method)

This commit is contained in:
Andrew 2026-04-09 12:22:18 +07:00
parent f722fc0e5f
commit ab5df9fd28
7 changed files with 106 additions and 26 deletions

View file

@ -224,6 +224,9 @@ public class LiblinphoneFlutterPlugin: NSObject, FlutterPlugin {
let success = linphoneBridge.sendDtmf(tone: tone)
result(success)
case "stopCallService":
result(true)
default:
result(FlutterMethodNotImplemented)
}