userPlus static method

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

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

Implementation

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