arrowBendRightUp static method

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

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

Implementation

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