userCircleGear static method

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

regular: user-circle-gear thin: user-circle-gear light: user-circle-gear bold: user-circle-gear fill: user-circle-gear duotone: user-circle-gear

Implementation

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