PIGrid constructor

const PIGrid({
  1. Key? key,
  2. Widget? child,
  3. required double width,
  4. required double height,
})

Implementation

const PIGrid(
    {Key? key, this.child, required this.width, required this.height})
    : super(key: key);