SpotCheckIcon constructor

const SpotCheckIcon({
  1. Key? key,
  2. required String? icon,
  3. required double size,
  4. String buttonType = 'textButton',
})

Implementation

const SpotCheckIcon({
  Key? key,
  required this.icon,
  required this.size,
  this.buttonType = 'textButton',
}) : super(key: key);