folderSimpleStar static method

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

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

Implementation

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