arrowFatLineDown static method

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

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

Implementation

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