CustomIconStyle constructor

const CustomIconStyle({
  1. Decoration iconDecoration = const BoxDecoration(color: Color(0xffe3e9f9), shape: BoxShape.circle),
  2. Color iconColor = const Color(0xff3276e2),
})

Implementation

const CustomIconStyle({
  this.iconDecoration =
      const BoxDecoration(color: Color(0xffe3e9f9), shape: BoxShape.circle),
  this.iconColor = const Color(0xff3276e2),
});