angle property

AppIconData get angle

regular: angle thin: angle light: angle bold: angle fill: angle duotone: angle

Implementation

static AppIconData get angle {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.angle;
    case AppIconsStyle.thin:
      return AppIconsThin.angle;
    case AppIconsStyle.light:
      return AppIconsLight.angle;
    case AppIconsStyle.bold:
      return AppIconsBold.angle;
    case AppIconsStyle.fill:
      return AppIconsFill.angle;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.angle;
  }
}