add getBackgroundImage to ThermionViewerFFI

This commit is contained in:
Nick Fisher
2025-06-17 11:49:16 +08:00
parent b9354531b2
commit 288acb019e

View File

@@ -199,6 +199,14 @@ class ThermionViewerFFI extends ThermionViewer {
}
}
///
///
///
Future<BackgroundImage> getBackgroundImage() async {
_backgroundImage ??= await BackgroundImage.create(this, scene);
return _backgroundImage!;
}
///
///
///