arrowFatLinesDown static method

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

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

Implementation

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