heartHalf static method

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

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

Implementation

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