IconSticker constructor

const IconSticker({
  1. required IconData iconData,
  2. Color? color,
  3. String name = '',
  4. Size size = const Size(100, 100),
  5. Map<String, Object> extra = const {},
})

Implementation

const IconSticker({
  required this.iconData,
  this.color,
  super.name,
  super.size = const Size(100, 100),
  super.extra,
});