calendar static method

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

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

Implementation

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