userSwitch static method

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

regular: user-switch thin: user-switch light: user-switch bold: user-switch fill: user-switch duotone: user-switch

Implementation

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