dotsThree property

AppIconData get dotsThree

regular: dots-three thin: dots-three light: dots-three bold: dots-three fill: dots-three duotone: dots-three

Implementation

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