heartbeat static method

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

regular: heartbeat thin: heartbeat light: heartbeat bold: heartbeat fill: heartbeat duotone: heartbeat

Implementation

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