Earring constructor

Earring({
  1. double? upDown,
  2. double? leftRight,
  3. int? bigSmall,
  4. int? rotateAngle,
})

Implementation

Earring({
  this.upDown,
  this.leftRight,
  this.bigSmall,
  this.rotateAngle,
});