pipeWrench static method

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

regular: pipe-wrench thin: pipe-wrench light: pipe-wrench bold: pipe-wrench fill: pipe-wrench duotone: pipe-wrench

Implementation

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