SmoothIconBase constructor

const SmoothIconBase({
  1. Key? key,
  2. required Widget child,
  3. double size = 200.0,
  4. Color? iconColor,
  5. double defaultBackgroundOpacity = .1,
  6. double paddingTop = 0.0,
  7. Color? backgroundColor,
  8. double paddingBottom = 0.0,
  9. double paddingLeft = 0.0,
  10. double paddingRight = 0.0,
})

Implementation

const SmoothIconBase({
  Key? key,
  required this.child,
  this.size = 200.0,
  this.iconColor,
  this.defaultBackgroundOpacity = .1,
  this.paddingTop = 0.0,
  this.backgroundColor,
  this.paddingBottom = 0.0,
  this.paddingLeft = 0.0,
  this.paddingRight = 0.0,
}) : super(key: key);