selectionPlus static method

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

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

Implementation

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