Orb constructor

const Orb({
  1. Key? key,
  2. double size = 70.0,
  3. double border = 8.0,
})

Implementation

const Orb({
  super.key,
  this.size = 70.0,
  this.border = 8.0,
});