arrowLineRight static method

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

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

Implementation

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