selectionBackground static method

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

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

Implementation

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