cloudMoon static method

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

regular: cloud-moon thin: cloud-moon light: cloud-moon bold: cloud-moon fill: cloud-moon duotone: cloud-moon

Implementation

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