arrowBendUpRight static method

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

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

Implementation

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