StickerView constructor

StickerView(
  1. Image image, {
  2. Key? key,
  3. required double width,
  4. required double height,
  5. double top = 0.0,
  6. double left = 0.0,
  7. double currentScale = 1.0,
  8. bool isFocus = false,
  9. dynamic onTapRemove(
    1. StickerView sticker
    )?,
})

Default constructor for the StickerView.

Implementation

StickerView(this.image,
    {Key? key,
    required this.width,
    required this.height,
    this.top = 0.0,
    this.left = 0.0,
    this.currentScale = 1.0,
    this.isFocus = false,
    this.onTapRemove})
    : super(key: key);