navigationArrow static method

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

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

Implementation

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