folderSimple static method

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

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

Implementation

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