fileDashed static method

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

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

Implementation

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