WhiteboardData constructor

WhiteboardData({
  1. required List<Shapes> shapes,
  2. required List<Shapes> redoStack,
  3. required List<Shapes> undoStack,
  4. required bool useImageBackground,
})

Implementation

WhiteboardData({
  required this.shapes,
  required this.redoStack,
  required this.undoStack,
  required this.useImageBackground,
});