createNewTemplate method
Implementation
void createNewTemplate(String name, String ratio, int width, int height) {
_currentTemplate = TemplateModel(
id: DateTime.now().millisecondsSinceEpoch.toString(),
name: name,
ratio: ratio,
canvas: CanvasModel(
width: width,
height: height,
background: BackgroundModel(type: 'image'),
),
layers: [],
);
_selectedLayer = null;
_isEditing = true;
notifyListeners();
}