disconnectFromMesh method
Implementation
@override
Future<void> disconnectFromMesh() async {
try {
await methodChannel.invokeMethod<void>('disconnectFromMesh');
} on PlatformException catch (e) {
debugPrint('Failed to disconnect from mesh: ${e.message}');
}
}