setScreenInfoAsync method
Updates the screen information asynchronously on the Nimmsta device.
data is a map of key-value pairs representing screen properties.
Implementation
@override
Future<void> setScreenInfoAsync(Map<String, String> data) async {
return await _methodChannel
.invokeMethod("setScreenInfoAsync", {"data": data});
}