userRectangle static method

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

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

Implementation

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