setBackgroundImage method

void setBackgroundImage(
  1. String imagePath
)

Implementation

void setBackgroundImage(String imagePath) {
  if (_currentTemplate == null) return;

  final updatedCanvas = _currentTemplate!.canvas.copyWith(
    backgroundImage: imagePath,
  );

  _currentTemplate = _currentTemplate!.copyWith(canvas: updatedCanvas);
  notifyListeners();
}