arrowsSplit static method

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

regular: arrows-split thin: arrows-split light: arrows-split bold: arrows-split fill: arrows-split duotone: arrows-split

Implementation

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