DiceStickersSlotMachine constructor

const DiceStickersSlotMachine({
  1. required Sticker background,
  2. required Sticker lever,
  3. required Sticker leftReel,
  4. required Sticker centerReel,
  5. required Sticker rightReel,
})

Animated stickers to be combined into a slot machine

Implementation

const DiceStickersSlotMachine({
  required this.background,
  required this.lever,
  required this.leftReel,
  required this.centerReel,
  required this.rightReel,
});