handHeart static method

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

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

Implementation

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