updateToolbarPassthroughView static method
Implementation
static Future<void> updateToolbarPassthroughView({
required String id,
required double x,
required double y,
required double width,
required double height,
required bool enableDebugLayers,
}) async {
await _completer.future;
await _windowManipulatorMethodChannel.invokeMethod(
'updateToolbarPassthroughView',
{
'id': id,
'x': x,
'y': y,
'width': width,
'height': height,
'enableDebugLayers': enableDebugLayers,
},
);
}