DialogCustom constructor

const DialogCustom({
  1. Key? key,
  2. required String? name,
  3. required double? height,
  4. int margin = 32,
  5. Color? color,
  6. Decoration? decoration,
  7. Widget? operate,
  8. List<Widget>? children,
  9. EdgeInsetsGeometry? rootMargin,
})

Implementation

const DialogCustom({
  Key? key,
  required this.name,
  required this.height,
  this.margin = 32,
  this.color,
  this.decoration,
  this.operate,
  this.children,
  this.rootMargin,
})  : isBody = false,
      super(key: key);