downloadSimple static method

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

regular: download-simple thin: download-simple light: download-simple bold: download-simple fill: download-simple duotone: download-simple

Implementation

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