arrowFatLineLeft static method

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

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

Implementation

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