selection static method

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

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

Implementation

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