StickableSticker constructor

const StickableSticker({
  1. Key? key,
  2. required Widget child,
  3. int? delayShowing,
  4. StickablePosition? position,
  5. bool? draggable = false,
  6. double? height,
  7. double? width,
})

Implementation

const StickableSticker({
  Key? key,
  required this.child,
  this.delayShowing,
  this.position,
  this.draggable = false,
  this.height,
  this.width,
}) : super(key: key);