IconBorder constructor

const IconBorder({
  1. Key? key,
  2. Color? color,
  3. IconData? icon,
  4. Widget? child,
  5. double iconSize = 24,
  6. double aspectRatio = 2,
})

Implementation

const IconBorder(
    {Key? key, this.color, this.icon, this.child, this.iconSize = 24, this.aspectRatio = 2})
    : super(key: key);