cloudSlash static method

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

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

Implementation

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