copy method

PositiveShape copy({
  1. Offset? center,
  2. num? r,
  3. int? count,
  4. num? angleOffset,
})

Implementation

PositiveShape copy({Offset? center, num? r, int? count, num? angleOffset}) {
  return PositiveShape(
    center: center ?? this.center,
    r: r ?? this.r,
    count: count ?? this.count,
    angleOffset: angleOffset ?? this.angleOffset,
  );
}