answerCall static method

Future<void> answerCall()

Answer incoming call

Implementation

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