Position constructor

const Position({
  1. Alignment origin = Alignment.topLeft,
  2. Alignment alignment = Alignment.topLeft,
  3. Offset offset = Offset.zero,
})

Implementation

const Position({
  this.origin = Alignment.topLeft,
  this.alignment = Alignment.topLeft,
  this.offset = Offset.zero
});