arrowsOut static method

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

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

Implementation

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