CellIcon constructor

const CellIcon({
  1. Key? key,
  2. required ValueCell<IconData?> icon,
  3. ValueCell<double?>? size,
  4. ValueCell<double?>? fill,
  5. ValueCell<double?>? weight,
  6. ValueCell<double?>? grade,
  7. ValueCell<double?>? opticalSize,
  8. ValueCell<Color?>? color,
  9. ValueCell<List<Shadow>?>? shadows,
  10. ValueCell<String?>? semanticLabel,
  11. ValueCell<TextDirection?>? textDirection,
  12. ValueCell<bool?>? applyTextScaling,
})

Implementation

const CellIcon({
  super.key,
  required this.icon,
  this.size,
  this.fill,
  this.weight,
  this.grade,
  this.opticalSize,
  this.color,
  this.shadows,
  this.semanticLabel,
  this.textDirection,
  this.applyTextScaling,
});