usersThree static method

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

regular: users-three thin: users-three light: users-three bold: users-three fill: users-three duotone: users-three

Implementation

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