highHeel static method

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

regular: high-heel thin: high-heel light: high-heel bold: high-heel fill: high-heel duotone: high-heel

Implementation

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