FastRoundedIcon constructor

const FastRoundedIcon({
  1. Key? key,
  2. required Widget icon,
  3. double size = kFastIconSizeMedium,
  4. double ratio = 0.5,
  5. Color? backgroundColor,
  6. Color? iconColor,
  7. double? iconSize,
  8. FastBoxShape? shape,
})

Implementation

const FastRoundedIcon({
  super.key,
  required this.icon,
  this.size = kFastIconSizeMedium,
  this.ratio = 0.5,
  this.backgroundColor,
  this.iconColor,
  this.iconSize,
  this.shape,
});