egg property

AppIconData get egg

regular: egg thin: egg light: egg bold: egg fill: egg duotone: egg

Implementation

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