setBackgroundImage method
Implementation
void setBackgroundImage(String imagePath) {
if (_currentTemplate == null) return;
final updatedCanvas = _currentTemplate!.canvas.copyWith(
backgroundImage: imagePath,
);
_currentTemplate = _currentTemplate!.copyWith(canvas: updatedCanvas);
notifyListeners();
}