arrowFatLeft static method

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

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

Implementation

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