Sticker constructor

Sticker({
  1. Key? key,
  2. Widget? child,
  3. bool? isText,
  4. required String id,
})

Implementation

Sticker({Key? key, this.child, this.isText, required this.id})
    : super(key: key);