CanvasLayoutWidget constructor

const CanvasLayoutWidget({
  1. Key? key,
  2. required CanvasController controller,
  3. required List<Widget> children,
  4. GridType gridType = GridType.none,
  5. CustomPainter? foregroundPainter,
})

Implementation

const CanvasLayoutWidget({
  super.key,
  required this.controller,
  required super.children,
  this.gridType = GridType.none,
  this.foregroundPainter,
});