PositiveShape constructor

PositiveShape({
  1. Offset center = Offset.zero,
  2. num r = 16,
  3. int count = 3,
  4. num angleOffset = 0,
})

Implementation

PositiveShape({
  this.center = Offset.zero,
  this.r = 16,
  this.count = 3,
  this.angleOffset = 0,
});