selectionAll static method

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

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

Implementation

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