calendarCheck static method

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

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

Implementation

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