SlidableAutoCloseNotification constructor

const SlidableAutoCloseNotification({
  1. required Object? groupTag,
  2. required SlidableController controller,
  3. bool closeSelf = false,
})

Creates a notification that can be used to close other Slidable widgets with the same groupTag.

Implementation

const SlidableAutoCloseNotification({
  required this.groupTag,
  required this.controller,
  this.closeSelf = false,
});