tree static method

PhosphorIconData tree([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: tree thin: tree light: tree bold: tree fill: tree duotone: tree

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;
  }
}