gearSix static method

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

regular: gear-six thin: gear-six light: gear-six bold: gear-six fill: gear-six duotone: gear-six

Implementation

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