rectangleDashed static method

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

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

Implementation

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