tent static method

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

regular: tent thin: tent light: tent bold: tent fill: tent duotone: tent

Implementation

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