bell property

AppIconData get bell

regular: bell thin: bell light: bell bold: bell fill: bell duotone: bell

Implementation

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