vectorThree static method

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

regular: vector-three thin: vector-three light: vector-three bold: vector-three fill: vector-three duotone: vector-three

Implementation

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