lineSegment static method

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

regular: line-segment thin: line-segment light: line-segment bold: line-segment fill: line-segment duotone: line-segment

Implementation

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