DashedRect constructor

const DashedRect({
  1. Color color = Colors.black,
  2. double strokeWidth = 1.0,
  3. double gap = 5.0,
  4. Key? key,
})

Implementation

const DashedRect({
     this.color = Colors.black,
     this.strokeWidth = 1.0,
     this.gap = 5.0,Key?key}):super(key: key);