StickersTabBarView constructor

const StickersTabBarView({
  1. Key? key,
  2. required Set<Sticker> stickers,
  3. required ValueSetter<Sticker> onStickerSelected,
  4. double maxCrossAxisExtent = 50.0,
})

Implementation

const StickersTabBarView({
  Key? key,
  required this.stickers,
  required this.onStickerSelected,
  this.maxCrossAxisExtent = 50.0,
}) : super(key: key);