configureTray method
Configure system tray
Implementation
Future<void> configureTray(TrayConfig config) async {
try {
await methodChannel.invokeMethod<void>('configureTray', config.toJson());
} on PlatformException catch (e) {
throw MCPPlatformException('Failed to configure tray', e.code, e.details);
}
}