treeView static method

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

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

Implementation

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