Layer constructor

Layer({
  1. Offset offset = const Offset(64, 64),
  2. double opacity = 1,
  3. double rotation = 0,
  4. double scale = 1,
})

Implementation

Layer({
  this.offset = const Offset(64, 64),
  this.opacity = 1,
  this.rotation = 0,
  this.scale = 1,
});