triangleDashed static method

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

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

Implementation

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