arrowSquareDownLeft static method

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

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

Implementation

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