userCircleDashed static method

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

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

Implementation

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