calendarPlus static method

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

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

Implementation

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