arrowSquareOut static method

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

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

Implementation

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