caretLineRight static method

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

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

Implementation

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