vectorTwo static method

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

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

Implementation

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