gearFine static method

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

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

Implementation

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