SlidableAutoCloseBehavior constructor

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

Implementation

const SlidableAutoCloseBehavior({
  Key? key,
  this.closeWhenOpened = true,
  this.closeWhenTapped = true,
  required this.child,
}) : super(key: key);