removeToolbarPassthroughView static method
Removes the toolbar passthrough view with the specified id
.
Implementation
static Future<void> removeToolbarPassthroughView({required String id}) async {
await _completer.future;
await _windowManipulatorMethodChannel.invokeMethod(
'removeToolbarPassthroughView',
{
'id': id,
},
);
}