PixelGrid constructor

const PixelGrid({
  1. double cellSize = 8.0,
  2. Color? color,
  3. Key? key,
})

Implementation

const PixelGrid({
  this.cellSize = 8.0,
  Color? color,
  Key? key,
}) : super(
        key: key,
        color: color,
      );