TiktokFavoriteGesture constructor

const TiktokFavoriteGesture({
  1. Key? key,
  2. required Widget child,
  3. Function? onAddFavorite,
  4. Function? onSingleTap,
})

Implementation

const TiktokFavoriteGesture({
  Key? key,
  required this.child,
  this.onAddFavorite,
  this.onSingleTap,
}) : super(key: key);