cloudArrowDown static method

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

regular: cloud-arrow-down thin: cloud-arrow-down light: cloud-arrow-down bold: cloud-arrow-down fill: cloud-arrow-down duotone: cloud-arrow-down

Implementation

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