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