binary property

AppIconData get binary

regular: binary thin: binary light: binary bold: binary fill: binary duotone: binary

Implementation

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