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