getPeerDisplayInfo method
Get peer display info
Implementation
@override
Future<String> getPeerDisplayInfo() async {
try {
final result = await _channel.invokeMethod<String>('getPeerDisplayInfo');
return result ?? "no device connected";
} catch (e) {
debugPrint('Get peer display info error: $e');
return "information not available";
}
}