arrowsOutSimple static method

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

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

Implementation

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