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