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