AdaptiveDialog constructor

const AdaptiveDialog({
  1. Key? key,
  2. required Widget child,
  3. required BoxConstraints? constraints,
  4. required ShapeBorder? shape,
})

Implementation

const AdaptiveDialog({
  Key? key,
  required this.child,
  required this.constraints,
  required this.shape,
}) : super(key: key);