calendarDots static method

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

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

Implementation

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