Anchor constructor

const Anchor({
  1. double x = 0.5,
  2. double y = 0.5,
})

Implementation

const Anchor({
  this.x = 0.5,
  this.y = 0.5
});