arrowArcLeft static method

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

regular: arrow-arc-left thin: arrow-arc-left light: arrow-arc-left bold: arrow-arc-left fill: arrow-arc-left duotone: arrow-arc-left

Implementation

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