folderPlus static method

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

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

Implementation

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