fileArrowUp static method

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

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

Implementation

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