StickersTabs constructor

const StickersTabs({
  1. Key? key,
  2. required ValueSetter<Sticker> onStickerSelected,
  3. required ValueSetter<int> onTabChanged,
  4. required bool imageBackground,
  5. int initialIndex = 0,
})

Implementation

const StickersTabs({
  Key? key,
  required this.onStickerSelected,
  required this.onTabChanged,
  required this.imageBackground,
  this.initialIndex = 0,
}) : super(key: key);