circleNotch property

AppIconData get circleNotch

regular: circle-notch thin: circle-notch light: circle-notch bold: circle-notch fill: circle-notch duotone: circle-notch

Implementation

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