flyingSaucer static method

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

regular: flying-saucer thin: flying-saucer light: flying-saucer bold: flying-saucer fill: flying-saucer duotone: flying-saucer

Implementation

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