SlidableGroupBehaviorListener<T> constructor

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

Implementation

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