arrowBendUpLeft property

AppIconData get arrowBendUpLeft

regular: arrow-bend-up-left thin: arrow-bend-up-left light: arrow-bend-up-left bold: arrow-bend-up-left fill: arrow-bend-up-left duotone: arrow-bend-up-left

Implementation

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