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