heartStraight static method

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

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

Implementation

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