public SliderBuilder Dots(bool dotsInside, SliderDotsType dotsType)
 {
     this.Component.Dots       = true;
     this.Component.DotsInside = dotsInside;
     this.Component.DotsType   = dotsType;
     return(this);
 }
 public SliderBuilder Dots(SliderDotsType dotsType)
 {
     this.Component.Dots     = true;
     this.Component.DotsType = dotsType;
     return(this);
 }