arrowSquareDown property

AppIconData get arrowSquareDown

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 AppIconData get arrowSquareDown {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.arrowSquareDown;
    case AppIconsStyle.thin:
      return AppIconsThin.arrowSquareDown;
    case AppIconsStyle.light:
      return AppIconsLight.arrowSquareDown;
    case AppIconsStyle.bold:
      return AppIconsBold.arrowSquareDown;
    case AppIconsStyle.fill:
      return AppIconsFill.arrowSquareDown;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.arrowSquareDown;
  }
}