PeekAndPopDialog constructor

const PeekAndPopDialog({
  1. Key? key,
  2. required Widget child,
  3. required Widget dialog,
})

Implementation

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