CustomDismissible constructor

const CustomDismissible({
  1. required Widget child,
  2. VoidCallback? onDismissed,
  3. double dismissThreshold = 0.2,
  4. bool enabled = true,
})

Implementation

const CustomDismissible({
  required this.child,
  this.onDismissed,
  this.dismissThreshold = 0.2,
  this.enabled = true,
});