arrowsInSimple static method

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

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

Implementation

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