cloudWarning static method

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

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

Implementation

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