DoubleChooseWindows constructor

const DoubleChooseWindows({
  1. Key? key,
  2. Color? backgroundColor,
  3. double? width,
  4. double? height,
  5. required Widget content,
  6. EdgeInsetsGeometry? padding,
  7. Widget? left,
  8. Widget? right,
  9. Decoration? decoration,
  10. ModalWindowsOptions? options,
})

Implementation

const DoubleChooseWindows({
  super.key,
  this.backgroundColor,
  this.width,
  this.height,
  required this.content,
  this.padding,
  this.left,
  this.right,
  this.decoration,
  this.options,
});