circleDashed property

AppIconData get circleDashed

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

Implementation

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