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