calendarBlank static method

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

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

Implementation

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