angle static method

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

regular: angle thin: angle light: angle bold: angle fill: angle duotone: angle

Implementation

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