BetterSwipeCellAction constructor

BetterSwipeCellAction({
  1. required Widget child,
  2. double? width,
  3. String? value,
  4. Future<bool> onClick(
    1. String? value
    )?,
})

Implementation

BetterSwipeCellAction({
  required this.child,
  this.width,
  this.value,
  this.onClick,
}) {
  width ??= 80.bw;
}