Star constructor
Implementation
Star(
this.center,
num count,
this.ir,
this.or, {
this.angleOffset = 0,
this.inside = false,
}){
if(inside){
if(ir<=0){
this.count=3;
}else{
this.count=(or/ir)-1;
}
}else{
this.count=count;
}
}