arrowFatDown static method

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

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

Implementation

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