setLayout method

Future<void> setLayout(
  1. String layout,
  2. Map<String, String> data
)

Configures the screen layout on the Nimmsta device.

layout is the layout identifier. data specifies the key-value mapping for dynamic layout properties.

Implementation

Future<void> setLayout(String layout, Map<String, String> data) {
  throw UnimplementedError('setLayout() has not been implemented.');
}