feather property

AppIconData get feather

regular: feather thin: feather light: feather bold: feather fill: feather duotone: feather

Implementation

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