selectionInverse static method

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

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

Implementation

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