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