CustomDialogStyle constructor

const CustomDialogStyle({
  1. BoxConstraints constraints = const BoxConstraints(maxWidth: 280),
  2. EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(horizontal: 24, vertical: 8),
})

Implementation

const CustomDialogStyle({
  this.constraints = const BoxConstraints(maxWidth: 280),
  this.contentPadding =
      const EdgeInsets.symmetric(horizontal: 24, vertical: 8),
});