WiredDialog constructor

const WiredDialog({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? padding,
})

Implementation

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