circleDashed static method

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

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

Implementation

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