arrowFatLinesLeft static method

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

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

Implementation

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