folderSimplePlus static method

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

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

Implementation

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