arrowRight static method

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

regular: arrow-right thin: arrow-right light: arrow-right bold: arrow-right fill: arrow-right duotone: arrow-right

Implementation

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