ghost property

AppIconData get ghost

regular: ghost thin: ghost light: ghost bold: ghost fill: ghost duotone: ghost

Implementation

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