RoundSearchIcon constructor

const RoundSearchIcon({
  1. Key? key,
  2. double? width = 40,
  3. List<BoxShadow>? boxShadow,
  4. Color iconColor = const Color(0xff47E10C),
  5. Color backgroundColor = const Color(0xff353535),
})

Implementation

const RoundSearchIcon({
  Key? key,
  this.width = 40,
  this.boxShadow,
  this.iconColor = const Color(0xff47E10C),
  this.backgroundColor = const Color(0xff353535),
}) : super(key: key);