OverlayImage constructor

const OverlayImage({
  1. required String id,
  2. required ImageSource source,
  3. required String imageUrl,
  4. required Offset position,
  5. required Size size,
  6. double rotation = 0.0,
  7. bool isLocal = false,
})

Implementation

const OverlayImage({
  required this.id,
  required this.source,
  required this.imageUrl,
  required this.position,
  required this.size,
  this.rotation = 0.0,
  this.isLocal = false,
});