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