setScreenInfoAsync method

  1. @override
Future<void> setScreenInfoAsync(
  1. Map<String, String> data
)
override

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});
}