calendarSlash static method

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

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

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;
  }
}