InterruptNotification constructor

const InterruptNotification({
  1. Key? key,
  2. bool interrupt = true,
  3. required Widget child,
})

Implementation

const InterruptNotification({
  super.key,
  this.interrupt = true,
  required this.child,
});