cursor property

AppIconData get cursor

regular: cursor thin: cursor light: cursor bold: cursor fill: cursor duotone: cursor

Implementation

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