folderSimpleDashed static method

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

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

Implementation

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