arrowSquareUpLeft static method

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

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

Implementation

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