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