BetterSwipeCell constructor

const BetterSwipeCell({
  1. Key? key,
  2. required Widget child,
  3. Duration? duration,
  4. List<BetterSwipeCellAction> leftActions = const [],
  5. List<BetterSwipeCellAction> rightActions = const [],
  6. bool isStretch = false,
})

Implementation

const BetterSwipeCell({
  super.key,
  required this.child,
  this.duration,
  this.leftActions = const [],
  this.rightActions = const [],
  this.isStretch = false,
});