hourglassSimpleHigh static method

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

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

Implementation

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