gauge static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}