clearBackgroundImage method

void clearBackgroundImage()

Implementation

void clearBackgroundImage() {
  if (_currentTemplate == null) return;

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

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