gear static method

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

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

Implementation

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