gauge static method

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

regular: gauge thin: gauge light: gauge bold: gauge fill: gauge duotone: gauge

Implementation

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