screwdriver static method

PhosphorIconData screwdriver([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: screwdriver thin: screwdriver light: screwdriver bold: screwdriver fill: screwdriver duotone: screwdriver

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;
  }
}