calendarDot static method

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

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

Implementation

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