cloudSnow static method

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

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

Implementation

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