flowArrow static method

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

regular: flow-arrow thin: flow-arrow light: flow-arrow bold: flow-arrow fill: flow-arrow duotone: flow-arrow

Implementation

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