arrowBendDoubleUpRight static method

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

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

Implementation

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