stickerZero static method

Widget stickerZero({
  1. Color? color,
  2. VoidCallback? onPressed,
  3. String? tooltip,
  4. String? text,
  5. IconData? icon,
  6. double size = 22,
  7. EdgeInsets margin = EdgeInsets.zero,
})

Implementation

static Widget stickerZero({
  Color? color,
  VoidCallback? onPressed,
  String? tooltip,
  String? text,
  IconData? icon,
  double size = 22,
  EdgeInsets margin = EdgeInsets.zero,
}) =>
    sticker(
      color: color,
      onPressed: onPressed,
      tooltip: tooltip,
      text: text,
      icon: icon,
      size: size,
      margin: margin,
    );