SunnyPad constructor

SunnyPad({
  1. Key? key,
  2. Widget? child,
  3. Color? color,
  4. bool? dense,
})

Implementation

SunnyPad({Key? key, this.child, this.color, bool? dense})
    : padding = dense == true ? sunnySpacing.half : sunnySpacing.all,
      super(key: key);