UpIcon constructor

const UpIcon({
  1. Key? key,
  2. required IconData icon,
  3. String? semanticLabel,
  4. UpColorType? colorType,
  5. dynamic onTap()?,
  6. UpStyle? style,
  7. List<Shadow>? shadows,
})

Implementation

const UpIcon({
  Key? key,
  required this.icon,
  this.semanticLabel,
  this.colorType,
  this.onTap,
  this.style,
  this.shadows,
}) : super(key: key);