setLayout method
Configures the screen layout on the Nimmsta device.
layout is the layout identifier.
data specifies the key-value mapping for dynamic layout properties.
Implementation
@override
Future<void> setLayout(String layout, Map<String, String> data) async {
return await _methodChannel
.invokeMethod("setLayout", {"layout": layout, "data": data});
}