cloudSlash static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}