fileArrowDown static method

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

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

Implementation

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