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