tooth static method
regular:
thin:
light:
bold:
fill:
duotone:
Implementation
static PhosphorIconData tooth(
[PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
switch (style) {
case PhosphorIconsStyle.regular:
return PhosphorIconsRegular.tooth;
case PhosphorIconsStyle.thin:
return PhosphorIconsThin.tooth;
case PhosphorIconsStyle.light:
return PhosphorIconsLight.tooth;
case PhosphorIconsStyle.bold:
return PhosphorIconsBold.tooth;
case PhosphorIconsStyle.fill:
return PhosphorIconsFill.tooth;
case PhosphorIconsStyle.duotone:
return PhosphorIconsDuotone.tooth;
}
}