SmoothIconDataIcon constructor

const SmoothIconDataIcon({
  1. Key? key,
  2. double size = 24.0,
  3. required IconData iconData,
  4. Color? color,
  5. EdgeInsets? iconPadding,
  6. Color? backgroundColor,
  7. double paddingTop = 0.0,
  8. double paddingBottom = 0.0,
  9. double paddingLeft = 0.0,
  10. double paddingRight = 0.0,
})

Implementation

const SmoothIconDataIcon({
  Key? key,
  this.size = 24.0,
  required this.iconData,
  this.color,
  this.iconPadding,
  this.backgroundColor,
  this.paddingTop = 0.0,
  this.paddingBottom = 0.0,
  this.paddingLeft = 0.0,
  this.paddingRight = 0.0,
}) : super(key: key);