folderDashed static method

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

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

Implementation

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