answerCall static method
Answer incoming call
Implementation
static Future<void> answerCall() async {
try {
await SipService.answerCall();
debugPrint('✅ Call answered');
} catch (e) {
debugPrint('❌ Answer call error: $e');
}
}
Answer incoming call
static Future<void> answerCall() async {
try {
await SipService.answerCall();
debugPrint('✅ Call answered');
} catch (e) {
debugPrint('❌ Answer call error: $e');
}
}