CustomPaintWidget constructor

const CustomPaintWidget({
  1. Key? key,
  2. required CustomPainter painter,
  3. required double height,
})

Implementation

const CustomPaintWidget({
  Key? key,
  required this.painter, required this.height,
}) : super(key: key);