selectionForeground static method

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

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

Implementation

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