ghost static method

PhosphorIconData ghost([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

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

Implementation

static PhosphorIconData ghost(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.ghost;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.ghost;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.ghost;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.ghost;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.ghost;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.ghost;
  }
}