calendarHeart static method

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

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

Implementation

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