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