arrowSquareUpRight static method

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

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

Implementation

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