DialogWrapperData constructor

const DialogWrapperData({
  1. Key? key,
  2. required DialogController controller,
  3. required Widget child,
})

Implementation

const DialogWrapperData({
  super.key,
  required this.controller,
  required super.child,
});