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