dispose static method
Dispose plugin (cleanup)
Implementation
static Future<void> dispose() async {
try {
await SipService.dispose();
await MultiSipService.dispose();
_initialized = false;
debugPrint('✅ VoIP Plugin disposed');
} catch (e) {
debugPrint('❌ Dispose error: $e');
}
}