BadFreeDraw constructor

const BadFreeDraw({
  1. Key? key,
  2. required FreeDrawController controller,
  3. double? width,
  4. double? height,
  5. Color? fill,
})

Implementation

const BadFreeDraw({
  super.key,
  required this.controller,
  this.width,
  this.height,
  this.fill,
});