code property

AppIconData get code

regular: code thin: code light: code bold: code fill: code duotone: code

Implementation

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