boot property

AppIconData get boot

regular: boot thin: boot light: boot bold: boot fill: boot duotone: boot

Implementation

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