filePlus static method

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

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

Implementation

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