ImageBox constructor

ImageBox({
  1. required Offset position,
  2. required double width,
  3. required double height,
  4. required Image image,
  5. double rotation = 0.0,
})

Implementation

ImageBox({
  required this.position,
  required this.width,
  required this.height,
  required this.image,
  this.rotation = 0.0,
});