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