SlidableGroupBehavior<T> constructor

const SlidableGroupBehavior<T>({
  1. Key? key,
  2. T? onNotification(
    1. T notification
    )?,
  3. required Widget child,
})

Creates a SlidableGroupBehavior.

Implementation

const SlidableGroupBehavior({
  Key? key,
  this.onNotification,
  required this.child,
}) : super(key: key);