bug property

AppIconData get bug

regular: bug thin: bug light: bug bold: bug fill: bug duotone: bug

Implementation

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