CustomSlidableBehavior constructor

const CustomSlidableBehavior({
  1. required Widget child,
  2. Key? key,
  3. bool closeWhenOpened = true,
  4. bool closeWhenTapped = true,
})

Slidable 行为

Implementation

const CustomSlidableBehavior({
  required this.child,
  super.key,
  this.closeWhenOpened = true,
  this.closeWhenTapped = true,
});