dot property

AppIconData get dot

regular: dot thin: dot light: dot bold: dot fill: dot duotone: dot

Implementation

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