copy method
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,
);
}