cloudArrowUp static method

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

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

Implementation

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