showLogos method
Display the logos on the last screen of the Liquid Galaxy.
Implementation
Future<void> showLogos() async {
if (!await sshConnection.isConnected()) {
return;
}
await sshConnection.sendKMLToSlave(
sshConnection.leftScreen, KMLMakers.screenOverlayImage(logosUrl));
}