caretLineUp static method

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

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

Implementation

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