clearOnscreenEntity method
Clears the onscreen entity association set by setOnscreenEntity (#56).
Implementation
@override
Future<void> clearOnscreenEntity() async {
try {
await methodChannel.invokeMethod('clearOnscreenEntity');
} on MissingPluginException {
// No-op on platforms that don't implement this (e.g., Android).
}
}