NudgeBox constructor

const NudgeBox({
  1. bool fillWidth = false,
  2. double? fixedWidth,
  3. double? fixedHeight,
  4. Color? background,
  5. EdgeInsets padding = EdgeInsets.zero,
  6. EdgeInsets margin = EdgeInsets.zero,
  7. double borderRadius = 0,
  8. Color? borderColor,
  9. double borderWidth = 0,
  10. NudgeSelfAlign? selfAlign,
})

Implementation

const NudgeBox({
  this.fillWidth = false,
  this.fixedWidth,
  this.fixedHeight,
  this.background,
  this.padding = EdgeInsets.zero,
  this.margin = EdgeInsets.zero,
  this.borderRadius = 0,
  this.borderColor,
  this.borderWidth = 0,
  this.selfAlign,
});