arrowUpRight static method

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

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

Implementation

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