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