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