hourglassHigh static method

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

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

Implementation

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