arrowSquareDown static method

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

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

Implementation

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