CustomDialog constructor
Creates a CustomDialog with the given child, and optional height and width.
The child parameter must not be null.
Implementation
const CustomDialog({Key? key, required this.child, this.height, this.width})
: super(key: key);