getBackgroundImage method
Implementation
Future<TexturedQuad> getBackgroundImage() async {
if (_backgroundImage == null) {
_backgroundImage ??= await FilamentApp.instance!.createTexturedQuad();
await scene.add(_backgroundImage!);
}
return _backgroundImage!;
}