arrowsInLineHorizontal static method

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

regular: arrows-in-line-horizontal thin: arrows-in-line-horizontal light: arrows-in-line-horizontal bold: arrows-in-line-horizontal fill: arrows-in-line-horizontal duotone: arrows-in-line-horizontal

Implementation

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