arrowsLeftRight static method

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

regular: arrows-left-right thin: arrows-left-right light: arrows-left-right bold: arrows-left-right fill: arrows-left-right duotone: arrows-left-right

Implementation

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