cloudFog static method

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

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

Implementation

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