ImageBoxDto constructor

ImageBoxDto({
  1. required Uint8List imageBytes,
  2. required Offset position,
  3. required double width,
  4. required double height,
  5. required double rotation,
})

Implementation

ImageBoxDto({
  required this.imageBytes,
  required this.position,
  required this.width,
  required this.height,
  required this.rotation,
});